Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getPost (0.37 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"url('https://example.com/').getScheme() == 'https'",
    				"url('https://example.com:80/').getHost() == 'example.com:80'",
    				"url('https://example.com/').getHost() == 'example.com'",
    				"url('https://[::1]:80/').getHost() == '[::1]:80'",
    				"url('https://[::1]/').getHost() == '[::1]'",
    				"url('/path').getHost() == ''",
    				"url('https://example.com:80/').getHostname() == 'example.com'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    }
    
    type storageWithCounter struct {
    	storage.Interface
    
    	listCounter int64
    }
    
    func (s *storageWithCounter) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	atomic.AddInt64(&s.listCounter, 1)
    	return s.Interface.GetList(ctx, key, opts, listObj)
    }
    
    func TestStoreDeleteCollection(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K 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. 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)
  5. tests/integration/pilot/common/routing.go

    					// no host header for TCP
    					// TODO understand why proxyless adds the port to :authority md
    					return check.OK()
    				}
    				return check.And(
    					check.OK(),
    					check.Host(opts.GetHost()))
    			},
    			comboFilters: func() []echotest.CombinationFilter {
    				if call.scheme != scheme.GRPC {
    					return []echotest.CombinationFilter{func(from echo.Instance, to echo.Instances) echo.Instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.testing.jacoco.plugins.JacocoTaskExtension.getOutput()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoTaskExtension.java:0)
    Method <org.gradle.testing.jacoco.plugins.JacocoTaskExtension.getPort()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoTaskExtension.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top