Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for NEW (0.06 sec)

  1. staging/src/k8s.io/api/discovery/v1/zz_generated.deepcopy.go

    		*out = new(string)
    		**out = **in
    	}
    	if in.Zone != nil {
    		in, out := &in.Zone, &out.Zone
    		*out = new(string)
    		**out = **in
    	}
    	if in.Hints != nil {
    		in, out := &in.Hints, &out.Hints
    		*out = new(EndpointHints)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFile.java

            return addOption(new StringsJavadocOptionFileOption(option, new ArrayList<>(), joinBy));
        }
    
        public JavadocOptionFileOption<List<String>> addMultilineStringsOption(String option) {
            return addOption(new MultilineStringsJavadocOptionFileOption(option, new ArrayList<>()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

        final fileReferenceFactory = new FileReferenceFactory()
        final customEntries = [
            new ProjectDependency("/test2"),
            new Container("org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"),
            new Library(fileReferenceFactory.fromPath("/apache-ant-1.7.1/lib/ant-antlr.jar")),
            new SourceFolder("src", "bin2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/zz_generated.deepcopy.go

    		in, out := &in.Name, &out.Name
    		*out = new(string)
    		**out = **in
    	}
    	if in.Protocol != nil {
    		in, out := &in.Protocol, &out.Protocol
    		*out = new(v1.Protocol)
    		**out = **in
    	}
    	if in.Port != nil {
    		in, out := &in.Port, &out.Port
    		*out = new(int32)
    		**out = **in
    	}
    	if in.AppProtocol != nil {
    		in, out := &in.AppProtocol, &out.AppProtocol
    		*out = new(string)
    		**out = **in
    	}
    	return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/SnapshotSerializerTest.groovy

            value == written
    
            where:
            array << [
                new byte[]{42},
                new short[]{42},
                new int[]{42},
                new long[]{42},
                new float[]{42.0},
                new double[]{42.0},
                new char[]{'*'},
                new boolean[]{true}
            ]
            value = new ArrayOfPrimitiveValueSnapshot(array)
        }
    
        def "serializes list properties"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                "new File(\"${filePath}\").$checkKind()"
            }
    
            @Override
            String getJavaExpression() {
                "new File(\"${filePath}\").$checkKind()"
            }
        }
    
        static FileCheck fileExists(String filePath) {
            new FileCheck(filePath, "exists")
        }
    
        static FileCheck fileIsFile(String filePath) {
            new FileCheck(filePath, "isFile")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java

        hasher.putShort((short) 0x0201);
        hasher.assertBytes(new byte[] {1, 2});
      }
    
      public void testInt() {
        TestHasher hasher = new TestHasher();
        hasher.putInt(0x04030201);
        hasher.assertBytes(new byte[] {1, 2, 3, 4});
      }
    
      public void testLong() {
        TestHasher hasher = new TestHasher();
        hasher.putLong(0x0807060504030201L);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStatsTest.groovy

            return [
                    new GarbageCollectionEvent(0000, new MemoryUsage(0, 100, 1000, 1000), 1),
                    new GarbageCollectionEvent(1000, new MemoryUsage(0, 250, 1000, 1000), 2),
                    new GarbageCollectionEvent(2000, new MemoryUsage(0, 500, 1000, 1000), 3),
                    new GarbageCollectionEvent(3000, new MemoryUsage(0, 750, 1000, 1000), 6),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            assertEquals("\"aaa bbb\"", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb" })));
            assertEquals("\"aaa bbb\" \"ccc\"", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb", "ccc" })));
            assertEquals("\"a\\\"aa\"", getAsQuery(Collections.singletonMap(k, new String[] { "a\"aa" })));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/reflect/TypeOfSpec.groovy

            b == new TypeOf<List>() {}.hashCode()
            c == new TypeOf<List<String>>() {}.hashCode()
        }
    
        def "factory methods"() {
            expect:
            typeOf(String) == new TypeOf<String>() {}
            typeOf((Type) String) == new TypeOf<String>() {}
            parameterizedTypeOf(new TypeOf<List<?>>() {}, typeOf(String)) == new TypeOf<List<String>>() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:51:08 UTC 2021
    - 3.4K bytes
    - Viewed (0)
Back to top