Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 787 for patching (0.19 sec)

  1. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
      // be one of the following values:
      // * Exact: Matches the URL path exactly.
      // * Prefix: Matches based on a URL path prefix split by '/'. Matching is
      //   done on a path element by element basis. A path element refers is the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/lookup.go

    						return nil, index, false // collision
    					}
    					obj = m
    					indirect = e.indirect
    					continue // we can't have a matching field or interface method
    				}
    			}
    
    			switch t := under(typ).(type) {
    			case *Struct:
    				// look for a matching field and collect embedded types
    				for i, f := range t.fields {
    					if f.sameId(pkg, name, foldCase) {
    						assert(f.typ != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/go/types/lookup.go

    						return nil, index, false // collision
    					}
    					obj = m
    					indirect = e.indirect
    					continue // we can't have a matching field or interface method
    				}
    			}
    
    			switch t := under(typ).(type) {
    			case *Struct:
    				// look for a matching field and collect embedded types
    				for i, f := range t.fields {
    					if f.sameId(pkg, name, foldCase) {
    						assert(f.typ != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    id("maven-publish")
                }
    
                group = 'group'
                version = '1.0'
    
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
    
                dependencies {
                    api('org.test:non-transitive:1.0') { transitive = false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

                // When using file system watching in Windows tests it becomes harder to delete the project directory,
                // since file system watching on Windows adds a lock on the watched directory, which is currently the project directory.
                // After deleting the contents of the watched directory, Gradle will stop watching the directory and release the file lock.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    	var serverShuttingDownCh <-chan struct{}
    	if signals := apirequest.ServerShutdownSignalFrom(req.Context()); signals != nil {
    		serverShuttingDownCh = signals.ShuttingDown()
    	}
    
    	server := &WatchServer{
    		Watching: watcher,
    		Scope:    scope,
    
    		UseTextFraming:  useTextFraming,
    		MediaType:       mediaType,
    		Framer:          framer,
    		Encoder:         encoder,
    		EmbeddedEncoder: embeddedEncoder,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultArtifactVariantSelectorFactoryTest.groovy

          - With source attributes: artifactType 'classes'
          - Candidate transform(s):
              - Transform '' producing attributes: artifactType 'dll'""")
        }
    
        def "returns no matching variant artifact set when no variants match and ignore no matching enabled"() {
            def variant1 = resolvedVariant()
            def variant2 = resolvedVariant()
            def set = resolvedVariantSet()
            def variants = [variant1, variant2] as Set
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    // If there is still no winner after these rules are applied, the first match
    // found wins.
    //
    // Notes:
    // [2] In practice, as matching of Exact is done in a separate phase from
    //     matching the other levels, we reuse the Exact level to mean MaxExact in
    //     the second phase. As a consequence, we only need the levels defined by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

         * version selection. The nice thing is that it uses attribute matching now, and we prove
         * that it integrates well with the legacy "status" API thanks to the Maven use case:
         * since Maven doesn't have a "status" but infers it from the version instead, we can show
         * that we can provide a status to Maven dependencies and still use attribute matching
         * to use the right version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

            where:
            capability << ['default', 'org.test:sample:1.0']
        }
    
        def "matching attribute combinations, where one uses the default capability and one uses a matching explicit capability, triggers a warning"() {
            given:
            settingsFile << "rootProject.name = 'sample'"
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top