Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,724 for Example (0.15 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                            id = "com.example.restricted"
                            implementationClass = "com.example.restricted.RestrictedPlugin"
                        }
                        create("softwareTypeRegistrator") {
                            id = "com.example.restricted.ecosystem"
                            implementationClass = "com.example.restricted.SoftwareTypeRegistrationPlugin"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

    /**
     * Enables fine-tuning module details (*.iml file) of the IDEA plugin.
     * <p>
     * Example of use with a blend of most possible properties.
     * Typically you don't have to configure this model directly because Gradle configures it for you.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'idea'
     * }
     *
     * //for the sake of this example, let's introduce a 'performanceTestCompile' configuration
     * configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

         * <p>
         * For example see docs for {@link EclipseProject}
         */
        public void setName(String name) {
            this.name = name;
        }
    
        public String getComment() {
            return comment;
        }
    
        /**
         * A comment used for the eclipse project. By default it will be configured to <b>project.description</b>
         * <p>
         * For example see docs for {@link EclipseProject}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/mod_invalid_version.txt

    -- go.mod.orig --
    module example.com
    
    go 1.13
    -- outside/go.mod --
    module example.com/outside
    
    go 1.13
    
    require example.com v0.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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 (1)
Back to top