Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for getPost (0.12 sec)

  1. security/pkg/nodeagent/cache/secretcache_test.go

    		t.Errorf("Got unexpected certificate chain #1. Got: %v, want: %v", string(got), string(want))
    	}
    
    	// Root cert is the last element in the generated certs.
    	want = []byte(fakeCACli.GeneratedCerts[0][2])
    	if got := sc.cache.GetRoot(); !bytes.Equal(got, want) {
    		t.Errorf("Got unexpected root certificate. Got: %v\n want: %v", string(got), string(want))
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // index in the subgraph list.
      int subgraph_index = 0;
      for (const auto& signature_def_data : signature_defs) {
        auto inputs = GetList(subgraph_index, signature_def_data.inputs);
        auto outputs = GetList(subgraph_index, signature_def_data.outputs);
        auto inputs_buf = builder_.CreateVector(inputs);
        auto outputs_buf = builder_.CreateVector(outputs);
        auto signature_key_buf =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	}
    	if redirect.Scheme != "" && redirect.Scheme != "http" && redirect.Scheme != "https" {
    		return fmt.Errorf(`invalid redirect scheme, must be "http" or "https"`)
    	}
    	if redirect.GetPort() > 0 {
    		if err := agent.ValidatePort(int(redirect.GetPort())); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    func validateHTTPDirectResponse(directResponse *networking.HTTPDirectResponse) (errs Validation) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	           ::= DT <expression> E
    func (st *state) prefix() AST {
    	var a AST
    
    	// The last name seen, for a constructor/destructor.
    	var last AST
    
    	var module AST
    
    	getLast := func(a AST) AST {
    		for {
    			if t, ok := a.(*Template); ok {
    				a = t.Name
    			} else if q, ok := a.(*Qualified); ok {
    				a = q.Name
    			} else if t, ok := a.(*TaggedName); ok {
    				a = t.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            registerInstanceOn(modelRegistry, "extensionContainer", EXTENSION_CONTAINER_MODEL_TYPE, getExtensions());
            modelRegistry.getRoot().applyToSelf(BasicServicesRules.class);
        }
    
        private <T> void registerInstanceOn(ModelRegistry modelRegistry, String path, ModelType<T> type, T instance) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server_test.go

    		server.mutex.RUnlock()
    		if statusPort == 0 {
    			return fmt.Errorf("no port allocated")
    		}
    		return nil
    	}, retry.Delay(time.Microsecond)); err != nil {
    		t.Fatalf("failed to getport: %v", err)
    	}
    
    	return server
    }
    
    func TestPprof(t *testing.T) {
    	pprofPath := "/debug/pprof/cmdline"
    	// Starts the pilot agent status server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            LoggingServiceRegistry loggingServices = LoggingServiceRegistry.newEmbeddableLogging();
            LoggingManagerInternal rootLoggingManager = loggingServices.get(DefaultLoggingManagerFactory.class).getRoot();
            rootLoggingManager.attachSystemOutAndErr();
            return loggingServices;
        }
    
        @Override
        public GradleExecuter withTestConsoleAttached() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return currentState.map(ResolverResults::isFullyResolved).orElse(false);
        }
    
        private class ConfigurationResolutionAccess implements ResolutionAccess {
    
            @Override
            public ResolutionHost getHost() {
                return new DefaultResolutionHost();
            }
    
            @Override
            public ImmutableAttributes getAttributes() {
                configurationAttributes.freeze();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InetAddresses.java

          this.flags = flags;
        }
    
        public Inet4Address getServer() {
          return server;
        }
    
        public Inet4Address getClient() {
          return client;
        }
    
        public int getPort() {
          return port;
        }
    
        public int getFlags() {
          return flags;
        }
      }
    
      /**
       * Evaluates whether the argument is a Teredo address.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/InetAddresses.java

          this.flags = flags;
        }
    
        public Inet4Address getServer() {
          return server;
        }
    
        public Inet4Address getClient() {
          return client;
        }
    
        public int getPort() {
          return port;
        }
    
        public int getFlags() {
          return flags;
        }
      }
    
      /**
       * Evaluates whether the argument is a Teredo address.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top