Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 891 for palmer (0.28 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                CommandLineParser parser = new CommandLineParser();
                propertiesConverter.configure(parser);
                buildLayoutConverter.configure(parser);
                loggingBuildOptions.configure(parser);
    
                parser.allowUnknownOptions();
                parser.allowMixedSubcommandsAndOptions();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. security/pkg/server/ca/node_auth.go

    	}
    
    	// Finally, we validate the requested identity is running on the same node the caller is on
    	callerPod := na.pods.Get(caller.PodName, caller.PodNamespace)
    	if callerPod == nil {
    		return fmt.Errorf("pod %v/%v not found", caller.PodNamespace, caller.PodName)
    	}
    	// Make sure UID is still valid for our current state
    	if callerPod.UID != types.UID(caller.PodUID) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    	cases := []struct {
    		name               string
    		xfccHeader         string
    		caller             *security.Caller
    		authenticateErrMsg string
    		useHttpRequest     bool //nolint
    	}{
    		{
    			name:               "No xfcc header",
    			xfccHeader:         "",
    			authenticateErrMsg: "caller from 127.0.0.1:2301 does not have Xfcc header",
    		},
    		{
    			name:               "junk xfcc header",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/StartParameterConverter.java

        public void configure(CommandLineParser parser) {
            welcomeMessageConfigurationCommandLineConverter.configure(parser);
            loggingConfigurationCommandLineConverter.configure(parser);
            parallelConfigurationCommandLineConverter.configure(parser);
            projectPropertiesCommandLineConverter.configure(parser);
            parser.allowMixedSubcommandsAndOptions();
            buildOptionsConverter.configure(parser);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. security/pkg/server/ca/node_auth_test.go

    		},
    		{
    			name:                    "unknown caller",
    			caller:                  ztunnelCaller,
    			trustedAccounts:         allowZtunnel,
    			requestedIdentityString: podSameNode.Identity(),
    			pods:                    []pod{podSameNode},
    			wantErr:                 "pod istio-system/ztunnel-a not found",
    		},
    		{
    			name: "bad UID",
    			caller: func(k security.KubernetesInfo) security.KubernetesInfo {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. pkg/log/default_test.go

    				"\"stack\":\".*\"}",
    			json:       true,
    			caller:     true,
    			stackLevel: DebugLevel,
    		},
    		{
    			f: func() { Warn("Hello") },
    			pat: "{\"level\":\"warn\",\"time\":\"" + timePattern + "\",\"caller\":\"log/default_test.go:.*\",\"msg\":\"Hello\"," +
    				"\"stack\":\".*\"}",
    			json:       true,
    			caller:     true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/json_to_flatbuffer.cc

      // parse schema first, so we can use it to parse the data after
      flatbuffers::Parser parser;
      const bool schema_parse_result =
          parser.Parse(schema.c_str()) && parser.Parse(json.c_str());
      if (!schema_parse_result) {
        std::cerr << "Parse error.\n";
        return 1;
      }
      const size_t length = parser.builder_.GetSize();
      const size_t n =
          std::fwrite(parser.builder_.GetBufferPointer(), 1, length, stdout);
      if (n != length) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt.go

    var fdSem = make(chan bool, 200)
    
    var (
    	rewrite    func(*token.FileSet, *ast.File) *ast.File
    	parserMode parser.Mode
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: gofmt [flags] [path ...]\n")
    	flag.PrintDefaults()
    }
    
    func initParserMode() {
    	parserMode = parser.ParseComments
    	if *allErrors {
    		parserMode |= parser.AllErrors
    	}
    	// It's only -r that makes use of go/ast's object resolution,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            GsaConfigParser parser = new GsaConfigParser();
            try (InputStream is = ResourceUtil.getResourceAsStream("data/gsaconfig.xml")) {
                parser.parse(new InputSource(is));
            }
            parser.getWebConfig().ifPresent(c -> {
                System.out.println(c.toString());
            }).orElse(() -> fail());
            parser.getFileConfig().ifPresent(c -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultRootLocator.java

                XMLStreamReader parser = new WstxInputFactory().createXMLStreamReader(is);
                if (parser.nextTag() == XMLStreamReader.START_ELEMENT
                        && parser.getLocalName().equals("project")) {
                    for (int i = 0; i < parser.getAttributeCount(); i++) {
                        if ("root".equals(parser.getAttributeLocalName(i))) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top