Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for GlassV3 (0.15 sec)

  1. src/cmd/go/testdata/mod/rsc.io_quote_v3_v3.0.0.txt

    package quote // import "rsc.io/quote"
    
    import "rsc.io/sampler"
    
    // Hello returns a greeting.
    func HelloV3() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func GlassV3() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func GoV3() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt

    func Hello() string {
    	return quote.HelloV3()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return quote.GlassV3()
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return quote.GoV3()
    }
    
    // Opt returns an optimization truth.
    func Opt() string {
    	// Wisdom from ken.
    	return quote.OptV3()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180710144737-5d9f230bcfba.txt

    func Hello() string {
    	return quote.HelloV3()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return quote.GlassV3()
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return quote.GoV3()
    }
    
    // Opt returns an optimization truth.
    func Opt() string {
    	// Wisdom from ken.
    	return quote.OptV3()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_replace.txt

    package quote
    
    import "rsc.io/sampler"
    
    // Hello returns a greeting.
    func HelloV3() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func GlassV3() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a REPLACED Go proverb.
    func GoV3() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/CachedScalaCompileIntegrationTest.groovy

            def source3 = createJavaClass("Class3", "proto")
            def class1 = scalaClassFile('Class1.class')
            def class2 = scalaClassFile('Class2.class')
            def class3 = scalaClassFile('proto/Class3.class')
    
            when:
            withBuildCache().run(compilationTask)
            then:
            class1.isFile()
            class2.isFile()
            class3.isFile()
            file(compiledFile).isFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/TestResultTest.groovy

            ClassTestResults class2 = Mock()
            _ * class2.name >> 'a'
            ClassTestResults class3 = Mock()
            _ * class3.name >> 'z'
    
            TestResult result = new TestResult('name', 0, class1)
            TestResult smallerClass = new TestResult('name', 0, class2)
            TestResult largerClass = new TestResult('name', 0, class3)
            TestResult smallerName = new TestResult('a', 0, class1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RunPreviousFailedFirstTestClassProcessorTest.groovy

        def 'previous failed test classes should be passed to delegate first'() {
            given:
            processor = new RunPreviousFailedFirstTestClassProcessor(['Class3'] as Set, delegate)
    
            when:
            processor.startProcessing(testResultProcessor)
            ['Class1', 'Class2', 'Class3'].each { processor.processTestClass(new DefaultTestClassRunInfo(it)) }
            processor.stop()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    				),
    				resource2: newContainerAllocateResponse(
    					withCDIDevices("vendor3.com/class3=device3", "vendor4.com/class4=device4"),
    				),
    			},
    			expected: &DeviceRunContainerOptions{
    				Annotations: []kubecontainer.Annotation{
    					{Name: "cdi.k8s.io/devicemanager_pod-container", Value: "vendor1.com/class1=device1,vendor2.com/class2=device2,vendor3.com/class3=device3,vendor4.com/class4=device4"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/volume/util/storageclass_test.go

    				Name: "my-storage-class2",
    				Annotations: map[string]string{
    					"a": "b",
    				},
    			},
    		}
    
    		sc3 = &storagev1.StorageClass{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "my-storage-class3",
    				Annotations: map[string]string{
    					IsDefaultStorageClassAnnotation: "true",
    				},
    				CreationTimestamp: metav1.Time{Time: t1},
    			},
    		}
    
    		sc4 = &storagev1.StorageClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 14:18:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        abstract class Class2 extends Class1 implements Interface12 {}
        abstract class Class3<T> extends Class2 implements Interface3<T> {}
        TypeToken<Class3<String>>.TypeSet types = new TypeToken<Class3<String>>() {}.getTypes();
        makeUnmodifiable(types)
            .containsExactly(
                new TypeToken<Class3<String>>() {},
                new TypeToken<Interface3<String>>() {},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top