Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for inField (0.24 sec)

  1. src/time/zoneinfo_plan9.go

    }
    
    // Copied from strings to avoid a dependency.
    func fields(s string) []string {
    	// First count the fields.
    	n := 0
    	inField := false
    	for _, rune := range s {
    		wasInField := inField
    		inField = !isSpace(rune)
    		if inField && !wasInField {
    			n++
    		}
    	}
    
    	// Now create them.
    	a := make([]string, n)
    	na := 0
    	fieldStart := -1 // Set to -1 when looking for start of field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 23:09:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/taglet/java/CustomTaglet.java

    import com.sun.tools.doclets.Taglet;
    import com.sun.javadoc.*;
    
    import java.util.Map;
    
    public class CustomTaglet implements Taglet {
        public boolean inField() {
            return false;
        }
    
        public boolean inConstructor() {
            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
            return false;
        }
    
        public boolean inPackage() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 998 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/canCombineLocalOptionWithOtherOptions/src/taglet/java/LocaleAwareTaglet.java

     */
    import com.sun.javadoc.Tag;
    import com.sun.tools.doclets.Taglet;
    
    import java.util.Locale;
    import java.util.Map;
    
    public class LocaleAwareTaglet implements Taglet {
        public boolean inField() {
            return false;
        }
    
        public boolean inConstructor() {
            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					"set minField maxLength to 10, and maxField's minLength to 15",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"minField": map[string]interface{}{
    								"minLength": 10,
    							},
    							"maxField": map[string]interface{}{
    								"maxLength": 15,
    							},
    						},
    					}},
    				applyPatchOperation{
    					"add new field `otherField`, ratcheting `minField` and `maxField`",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    	nxp := src.NoXPos
    	nfield := types.NewField
    	asanGlobal := types.NewStruct([]*types.Field{
    		nfield(nxp, fname("beg"), up),
    		nfield(nxp, fname("size"), up),
    		nfield(nxp, fname("sizeWithRedzone"), up),
    		nfield(nxp, fname("name"), up),
    		nfield(nxp, fname("moduleName"), up),
    		nfield(nxp, fname("hasDynamicInit"), up),
    		nfield(nxp, fname("sourceLocation"), up),
    		nfield(nxp, fname("odrIndicator"), up),
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

    import org.junit.Test;
    
    /**
     * @author y-komori
     *
     */
    public class FieldUtilTest {
    
        /** */
        public Object objectField;
    
        /** */
        public int intField;
    
        /** */
        public String stringField;
    
        /** */
        public static final int INT_DATA = 987654321;
    
        /** */
        public static final String STRING_DATA = "Hello World!";
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

                "class OnField { @B(A.class) String foo; }",
                "class OnParameter { void foo(@B(A.class) int x) {} }"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            a.text += "/* change */"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "OnClass", "OnMethod", "OnParameter", "OnField")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. integration-tests/gradle/build.gradle.kts

            withCapability("com.google.collections:google-collections") {
              candidates
                .find {
                  val idField =
                    it.javaClass.getDeclaredMethod(
                      "getId"
                    ) // reflective access to make this compile with Gradle 5
                  (idField.invoke(it) as ModuleComponentIdentifier).module == "guava"
                }
                ?.apply { select(this) }
            }
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalGroovyCompilationIntegrationTest.groovy

            ], impl: [
                // cases where it's relevant, ABI-wise
                "class X {}",
                "@B(A.CST) class OnClass {}",
                "class OnMethod { @B(A.CST) void foo() {} }",
                "class OnField { @B(A.CST) String foo; }",
                "class OnParameter { void foo(@B(A.CST) int x) {} }",
                "class InMethodBody { void foo(int x) { @B(A.CST) int value = 5; } }",
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

                "class A {}"
            ], impl: [
                "class NoAnnotationClass {}",
                "@B(A.class) class OnClass {}",
                "class OnMethod { @B(A.class) void foo() {} }",
                "class OnField { @B(A.class) String foo; }",
                "class OnParameter { void foo(@B(A.class) int x) {} }"
            ]
    
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top