Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,138 for Example (0.13 sec)

  1. src/net/http/cgi/host_test.go

    		"env-SCRIPT_FILENAME":   os.Args[0],
    		"env-SCRIPT_NAME":       "/test.cgi",
    		"env-SERVER_NAME":       "example.com",
    		"env-SERVER_PORT":       "80",
    		"env-SERVER_SOFTWARE":   "go",
    	}
    	replay := runCgiTest(t, h, "GET /test.cgi?foo=bar&a=b HTTP/1.0\nHost: example.com:80\n\n", expectedMap)
    
    	if expected, got := "text/html", replay.Header().Get("Content-Type"); got != expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            def testClass = events.operation("Test class example.MyTest")
            testClass.descriptor.jvmTestKind == JvmTestKind.SUITE
            testClass.descriptor.name == 'example.MyTest'
            testClass.descriptor.displayName == 'Test class example.MyTest'
            testClass.descriptor.suiteName == 'example.MyTest'
            testClass.descriptor.className == 'example.MyTest'
            testClass.descriptor.methodName == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	uid := types.UID("uid")
    	fifteen := int64(15)
    	thirty := int64(30)
    
    	tc := &patchTestCase{
    		name: "TestPatchResourceNumberConversion",
    
    		startingPod: &example.Pod{},
    		changedPod:  &example.Pod{},
    		updatePod:   &example.Pod{},
    
    		expectedPod: &example.Pod{},
    	}
    
    	setTcPod(tc.startingPod, name, namespace, uid, "1", examplev1.SchemeGroupVersion.String(), &fifteen, "")
    
    	// Patch tries to change to 30.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. build/root/Makefile

    # Runs only the presubmission verifications that aren't slow.
    #
    # Example:
    #   make quick-verify
    endef
    .PHONY: quick-verify
    ifeq ($(PRINT_HELP),y)
    quick-verify:
    	echo "$$QUICK_VERIFY_HELP_INFO"
    else
    quick-verify:
    	QUICK=true SILENT=false hack/make-rules/verify.sh
    endif
    
    define UPDATE_HELP_INFO
    # Runs all the update scripts.
    #
    # Example:
    # make update
    endef
    .PHONY: update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    	wantErr      error  // expected error
    }{
    	{"www.example.com", "", "www.example.com", true, nil},
    	{"127.0.0.1", "", "127.0.0.1", true, nil},
    	{"2001:4860:0:2001::68", "", "2001:4860:0:2001::68", true, nil},
    	{"www.example.com", "example.com", "example.com", false, nil},
    	{"www.example.com", ".example.com", "example.com", false, nil},
    	{"www.example.com", "www.example.com", "www.example.com", false, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. helm/minio/values.yaml

        # nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
        # nginx.ingress.kubernetes.io/whitelist-source-range: 0.0.0.0/0
      path: /
      hosts:
        - minio-example.local
      tls: []
      #  - secretName: chart-example-tls
      #    hosts:
      #      - chart-example.local
    
    consoleService:
      type: ClusterIP
      clusterIP: ~
      port: "9001"
      nodePort: 32001
      loadBalancerIP: ~
      externalIPs: []
      annotations: {}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

            then:
            assertTestPassed("app", "org.example.app.MessageUtilsTest", "testGetMessage")
            assertTestPassed("list", "org.example.list.LinkedListTest", "testConstructor")
            assertTestPassed("list", "org.example.list.LinkedListTest", "testAdd")
            assertTestPassed("list", "org.example.list.LinkedListTest", "testRemove")
            assertTestPassed("list", "org.example.list.LinkedListTest", "testRemoveMissing")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    Here's a simple example:
    
    ====
    include::sample[dir="snippets/providers/services/kotlin",files="build.gradle.kts[tags=project-layout]"]
    include::sample[dir="snippets/providers/services/groovy",files="build.gradle[tags=project-layout]"]
    ====
    
    Here is an example using `javax.inject.Inject`:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    }
    
    // DeepEqualSafePodSpec returns an example.PodSpec safe for deep-equal operations.
    func DeepEqualSafePodSpec() example.PodSpec {
    	grace := int64(30)
    	return example.PodSpec{
    		RestartPolicy:                 "Always",
    		TerminationGracePeriodSeconds: &grace,
    		SchedulerName:                 "default-scheduler",
    	}
    }
    
    func computePodKey(obj *example.Pod) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_test.go

    			{
    				check: check.OK(),
    				from:  apps.D,
    				host:  "bar.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.E,
    				host:  "bar.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.E,
    				host:  "foo.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.D,
    				host:  "foo.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.B,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top