Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 362 for Patches (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_matcher.go

    }
    
    type matcher struct {
    	Matcher *matching.Matcher
    }
    
    func NewPolicyMatcher(m *matching.Matcher) PolicyMatcher {
    	return &matcher{
    		Matcher: m,
    	}
    }
    
    // ValidateInitialization checks if Matcher is initialized.
    func (c *matcher) ValidateInitialization() error {
    	return c.Matcher.ValidateInitialization()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/internal/trace/batchcursor.go

    }
    
    func (b *batchCursor) nextEvent(batches []batch, freq frequency) (ok bool, err error) {
    	// Batches should generally always have at least one event,
    	// but let's be defensive about that and accept empty batches.
    	for b.idx < len(batches) && len(batches[b.idx].data) == b.dataOff {
    		b.idx++
    		b.dataOff = 0
    		b.lastTs = 0
    	}
    	// Have we reached the end of the batches?
    	if b.idx == len(batches) {
    		return false, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. hack/update-netparse-cve.sh

        git ls-files -cmo --exclude-standard \
            ':!:vendor/*'        `# catches vendor/...` \
            ':!:*/vendor/*'      `# catches any subdir/vendor/...` \
            ':!:third_party/*'   `# catches third_party/...` \
            ':!:*/third_party/*' `# catches any subdir/third_party/...` \
            ':!:*/testdata/*'    `# catches any subdir/testdata/...` \
            ':(glob)**/*.go' \
            "$@"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelectorSpec.groovy

            then:
            result == transformed
    
            1 * attributeMatcher.matches(_, _, _) >> Collections.emptyList()
            1 * consumerProvidedVariantFinder.findTransformedVariants(variants, requestedAttributes) >> transformedVariants
            1 * attributeMatcher.matches(_, _, _) >> [transformedVariants[resultNum]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/path/filepath/match.go

    	}
    }
    
    // glob searches for files matching pattern in the directory dir
    // and appends them to matches. If the directory cannot be
    // opened, it returns the existing matches. New matches are
    // added in lexicographical order.
    func glob(dir, pattern string, matches []string) (m []string, e error) {
    	m = matches
    	fi, err := os.Stat(dir)
    	if err != nil {
    		return // ignore I/O error
    	}
    	if !fi.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    go install example.com/cmd/a@v1.0.0 example.com/cmd/nomatch...@v1.0.0
    stderr '^go: warning: "example.com/cmd/nomatch\.\.\." matched no packages$'
    
    # If a wildcard matches only non-main packages, we should see a different warning.
    go install example.com/cmd/err...@v1.0.0
    stderr '^go: warning: "example.com/cmd/err\.\.\." matched only non-main packages$'
    
    
    # 'go install pkg@version' should report errors if the module contains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/reader.h

    // Finds and returns the MetaGraphDef (within the provided SavedModel) that
    // matches the given set of tags. The lifetime of the returned MetaGraphDef is
    // the same as the lifetime of `saved_model_proto`.
    //
    // FindMetaGraphDef returns a failure status when no MetaGraphDef matches the
    // provided tags.
    absl::StatusOr<MetaGraphDef*> FindMetaGraphDef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 00:19:29 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    	GetMatchResources() v1.MatchResources
    }
    
    // Matcher decides if a request matches against matchCriteria
    type Matcher struct {
    	namespaceMatcher *namespace.Matcher
    	objectMatcher    *object.Matcher
    }
    
    func (m *Matcher) GetNamespace(name string) (*corev1.Namespace, error) {
    	return m.namespaceMatcher.GetNamespace(name)
    }
    
    // NewMatcher initialize the matcher with dependencies requires
    func NewMatcher(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. hack/update-gofmt.sh

        git ls-files -cmo --exclude-standard \
            ':!:vendor/*'        `# catches vendor/...` \
            ':!:*/vendor/*'      `# catches any subdir/vendor/...` \
            ':!:third_party/*'   `# catches third_party/...` \
            ':!:*/third_party/*' `# catches third_party/...` \
            ':!:*/testdata/*'    `# catches any subdir/testdata/...` \
            ':(glob)**/*.go' \
            "$@"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            assert matches.size() == 1
            return matches[0]
        }
    
        EclipseSourceDir sourceDir(String path) {
            def matches = getSourceDirs().findAll { it.path == path }
            assert matches.size() == 1
            return matches[0]
        }
    
        List<EclipseLibrary> getLibs() {
            return this.classpath.classpathentry.findAll { it.@kind == 'lib' }.collect { new EclipseLibrary(it) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top