Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for set_field (0.13 sec)

  1. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                flist.add(new FunctionScoreQueryBuilder.FilterFunctionBuilder(ScoreFunctionBuilders.randomFunction()
                        .seed(ComponentUtil.getSystemHelper().getCurrentTimeAsLong()).setField(fessConfig.getIndexFieldDocId())));
                reader.setQuery(QueryBuilders
                        .functionScoreQuery(QueryBuilders.matchAllQuery(),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

        }
    
        fun callOnObjectIntance(methodName: String): Any {
            val loadedClass = loadClass()
            val method = loadedClass.getMethod(methodName)
            val instance = loadedClass.getField("INSTANCE")
            return method.invoke(instance.get(loadedClass))
        }
    }
    
    
    private
    class BytesClassLoader : URLClassLoader(arrayOf(), getSystemClassLoader()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. src/go/parser/parser_test.go

    			continue
    		}
    		for j, exp := range exp {
    			got := got[j].Text
    			if got != exp {
    				t.Errorf("got %q in group %d; expected %q", got, i, exp)
    			}
    		}
    	}
    }
    
    func getField(file *ast.File, fieldname string) *ast.Field {
    	parts := strings.Split(fieldname, ".")
    	for _, d := range file.Decls {
    		if d, ok := d.(*ast.GenDecl); ok && d.Tok == token.TYPE {
    			for _, s := range d.Specs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                this.label = label;
                this.unit = unit;
                this.chartId = chartId;
                this.renderBackground = renderBackground;
            }
    
            public String getField() {
                return field;
            }
    
            public String getLabel() {
                return label;
            }
    
            public String getUnit() {
                return unit;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/value.go

    			return ntvObjPtr.Interface(), nil
    		}
    		return ntvObj.Interface(), nil
    	}
    	return nil, fmt.Errorf("type conversion error from object to '%v'", typeDesc)
    }
    
    // GetField returns a MapField by name if one exists.
    func (sv *structValue) GetField(name string) (*Field, bool) {
    	field, found := sv.fieldMap[name]
    	return field, found
    }
    
    // IsSet returns whether the given field, which is defined, has also been set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/ClassUtil.java

         *             指定された名前のフィールドが見つからない場合
         * @see Class#getField(String)
         */
        public static Field getField(final Class<?> clazz, final String name) throws NoSuchFieldRuntimeException {
            assertArgumentNotNull("clazz", clazz);
            assertArgumentNotEmpty("name", name);
    
            try {
                return clazz.getField(name);
            } catch (final NoSuchFieldException e) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. tests/scan_test.go

    	}
    }
    
    func TestScanRowsNullValuesScanToFieldDefault(t *testing.T) {
    	DB.Save(&User{})
    
    	rows, err := DB.Table("users").
    		Select(`
    			NULL AS bool_field,
    			NULL AS int_field,
    			NULL AS int8_field,
    			NULL AS int16_field,
    			NULL AS int32_field,
    			NULL AS int64_field,
    			NULL AS uint_field,
    			NULL AS uint8_field,
    			NULL AS uint16_field,
    			NULL AS uint32_field,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/fmt/print.go

    	p := newPrinter()
    	p.doPrintln(a)
    	b = append(b, p.buf...)
    	p.free()
    	return b
    }
    
    // getField gets the i'th field of the struct value.
    // If the field itself is a non-nil interface, return a value for
    // the thing inside the interface, not the interface itself.
    func getField(v reflect.Value, i int) reflect.Value {
    	val := v.Field(i)
    	if val.Kind() == reflect.Interface && !val.IsNil() {
    		val = val.Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        public Inner field;
    
        class Inner {}
      }
    
      public void testInnerClassWithParameterizedOwner() throws Exception {
        Type fieldType = ParameterizedOuter.class.getField("field").getGenericType();
        assertEquals(
            fieldType, TypeToken.of(ParameterizedOuter.class).resolveType(fieldType).getType());
      }
    
      private interface StringIterable extends Iterable<String> {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        public Inner field;
    
        class Inner {}
      }
    
      public void testInnerClassWithParameterizedOwner() throws Exception {
        Type fieldType = ParameterizedOuter.class.getField("field").getGenericType();
        assertEquals(
            fieldType, TypeToken.of(ParameterizedOuter.class).resolveType(fieldType).getType());
      }
    
      private interface StringIterable extends Iterable<String> {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top