Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,591 for palmer (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

         * The implementation may choose to delegate to the original Groovy implementation by returning the value of {@code invocation.callOriginal()}.
         *
         * @param invocation the arguments supplied by the caller
         * @param consumer the class that invokes the intercepted call
         * @return the value to return to the caller
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/parse_text_proto.cc

                          absl::string_view prefix_to_strip,
                          protobuf::Message* parsed_proto) {
      protobuf::TextFormat::Parser parser;
      // Don't produce errors when attempting to parse text format as it would fail
      // when the input is actually a binary file.
      NoOpErrorCollector collector;
      parser.RecordErrorsTo(&collector);
      // Attempt to parse as text.
      absl::string_view text_proto_without_prefix = text_proto;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/go/printer/performance_test.go

    	}
    }
    
    // cannot initialize in init because (printer) Fprint launches goroutines.
    func initialize() {
    	const filename = "testdata/parser.go"
    
    	src, err := os.ReadFile(filename)
    	if err != nil {
    		log.Fatalf("%s", err)
    	}
    
    	file, err := parser.ParseFile(fset, filename, src, parser.ParseComments)
    	if err != nil {
    		log.Fatalf("%s", err)
    	}
    
    	var buf bytes.Buffer
    	testprint(&buf, file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:10:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr2PluginIntegrationTest.groovy

        }
    
        private goodGrammar() {
            file("grammar-builder/src/main/antlr/TestGrammar.g") << """
                header {
                    package org.acme;
                }
    
                class TestGrammar extends Parser;
    
                options {
                    buildAST = true;
                }
    
                expr:   mexpr (PLUS^ mexpr)* SEMI!
                    ;
    
                mexpr
                    :   atom (STAR^ atom)*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainer.java

        }
    
        public ComponentModuleMetadataDetails module(final Object sourceModule) {
            final NotationParser<Object, ModuleIdentifier> parser = parser(moduleIdentifierFactory);
            final ModuleIdentifier source = parser.parseNotation(sourceModule);
            return new ComponentModuleMetadataDetails() {
    
                @Override
                public void replacedBy(Object moduleNotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/xfcc_authenticator.go

    // Authenticate extracts identities from Xfcc Header.
    func (xff XfccAuthenticator) Authenticate(ctx security.AuthContext) (*security.Caller, error) {
    	remoteAddr := ctx.RemoteAddress()
    	xfccHeader := ctx.Header(xfccparser.ForwardedClientCertHeader)
    	if len(remoteAddr) == 0 || len(xfccHeader) == 0 {
    		return nil, fmt.Errorf("caller from %s does not have Xfcc header", remoteAddr)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/RequirementParsingNativeDependencyResolver.java

    import org.gradle.nativeplatform.NativeLibraryRequirement;
    
    public class RequirementParsingNativeDependencyResolver implements NativeDependencyResolver {
        private final NotationParser<Object, NativeLibraryRequirement> parser = NativeDependencyNotationParser.parser();
    
        private final NativeDependencyResolver delegate;
    
        public RequirementParsingNativeDependencyResolver(NativeDependencyResolver delegate) {
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. hack/lib/test.sh

        echo "message:${message}"
        echo "has not:${match}"
        caller
        return 1
      fi
    }
    
    kube::test::if_has_not_string() {
      local message=$1
      local match=$2
    
      if grep -q "${match}" <<< "${message}"; then
        echo -n "${bold}${red}"
        echo "FAIL!"
        echo -n "${reset}"
        echo "message:${message}"
        echo "has:${match}"
        caller
        return 1
      else
        echo -n "${green}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cc

    /// Parse a type registered to this dialect.
    Type FallbackDialect::parseType(DialectAsmParser &parser) const {
      StringRef keyword;
      if (parser.parseKeyword(&keyword)) return Type();
    
      if (keyword == "tf_tensor") return TFTensorType::get(getContext());
      if (keyword == "tf_allocator") return TFAllocatorType::get(getContext());
    
      parser.emitError(parser.getNameLoc(), "unknown type: ") << keyword;
      return Type();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    	return strings.HasPrefix(a, "kubernetes.default.svc")
    }
    
    // Authenticate authenticates the call using the K8s JWT from the context.
    // The returned Caller.Identities is in SPIFFE format.
    func (a *KubeJWTAuthenticator) Authenticate(authRequest security.AuthContext) (*security.Caller, error) {
    	if authRequest.GrpcContext != nil {
    		return a.authenticateGrpc(authRequest.GrpcContext)
    	}
    	if authRequest.Request != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top