Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for RAW (0.05 sec)

  1. pkg/scheduler/schedule_one_test.go

    					Bind:      schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "DefaultBinder"}}},
    				},
    				PluginConfig: []schedulerapi.PluginConfig{
    					{
    						Name: "FakeNodeSelector",
    						Args: &runtime.Unknown{Raw: []byte(`{"nodeName":"node2"}`)},
    					},
    				},
    			},
    			schedulerapi.KubeSchedulerProfile{
    				SchedulerName: "match-node3",
    				Plugins: &schedulerapi.Plugins{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	tcs.closed[c] = false
    	tcs.list = append(tcs.list, c)
    }
    
    func (tcs *testConnSet) remove(c net.Conn) {
    	tcs.mu.Lock()
    	defer tcs.mu.Unlock()
    	tcs.closed[c] = true
    }
    
    // some tests use this to manage raw tcp connections for later inspection
    func makeTestDial(t *testing.T) (*testConnSet, func(n, addr string) (net.Conn, error)) {
    	connSet := &testConnSet{
    		t:      t,
    		closed: make(map[net.Conn]bool),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. fastapi/routing.py

                            if not is_body_allowed_for_status_code(response.status_code):
                                response.body = b""
                            response.headers.raw.extend(sub_response.headers.raw)
                if errors:
                    validation_error = RequestValidationError(
                        _normalize_errors(errors), body=body
                    )
                    raise validation_error
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          }
          os << "\n";
        }
      }
    }
    
    // For exported functions with bound inputs, rewrite the function
    // signature to match the requirements of tf_saved_model bound input args.
    //
    // The raw imported functions have `tensor<*x!tf_type.resource>` as the type for
    // mutable bound inputs and `tensor<...>` as the type for immutable
    // bound inputs. Here we canonicalize both of them into
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    				t.Errorf("Expected MatchSet=%s JumpChain=%s, got %s", epRule.MatchSet, epRule.JumpChain, rule.Raw)
    			}
    			if (epRule.MatchSet == "" && rule.MatchSet != nil) || (epRule.MatchSet != "" && (rule.MatchSet == nil || rule.MatchSet.Value != epRule.MatchSet)) {
    				t.Errorf("Expected MatchSet=%s JumpChain=%s, got %s", epRule.MatchSet, epRule.JumpChain, rule.Raw)
    			}
    		}
    	}
    }
    
    // checkIPSet to check expected ipset and entries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			Namespace: TestServiceNamespace,
    		},
    	}
    	cg := NewConfigGenTest(t, TestOptions{
    		Services: []*model.Service{service},
    	})
    	proxy := cg.SetupProxy(nil)
    	proxy.Metadata.Raw = map[string]any{
    		security.CredentialMetaDataName: "true",
    	}
    	// Expect sds_external cluster be added if credentialSocket exists
    	clusters := cg.Clusters(proxy)
    	xdstest.ValidateClusters(t, clusters)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	defer ts.Close()
    
    	// Make the certificate of the helper server available to the authenticator
    	caBundle := pem.EncodeToMemory(&pem.Block{
    		Type:  "CERTIFICATE",
    		Bytes: ts.Certificate().Raw,
    	})
    	caContent, err := dynamiccertificates.NewStaticCAContent("oidc-authenticator", caBundle)
    	if err != nil {
    		t.Fatalf("initialize ca: %v", err)
    	}
    	c.options.CAContentProvider = caContent
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder_test.go

    				tt.expectedHTTPPOpt.CommonHttpProtocolOptions.MaxConnectionDuration)
    		})
    	}
    }
    
    func TestBuildExternalSDSClusters(t *testing.T) {
    	proxy := &model.Proxy{
    		Metadata: &model.NodeMetadata{
    			Raw: map[string]any{
    				security.CredentialMetaDataName: "true",
    			},
    		},
    	}
    
    	cases := []struct {
    		name         string
    		expectedName string
    		expectedPath string
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    		pub = block.Bytes
    	}
    	key, err := x509.ParsePKCS1PublicKey(pub)
    	if err != nil {
    		return nil, err
    	}
    	return key, nil
    }
    
    // getRawDataer provides an interface for getting raw FS files.
    type getRawDataer interface {
    	GetRawData(ctx context.Context, volume, file string, fn func(r io.Reader, host string, disk string, filename string, info StatInfo) error) error
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "rgba(50, 172, 45, 0.97)" ], "dateFormat": "YYYY-MM-DD HH:mm:ss", "decimals": 2, "link": false, "linkTargetBlank": false, "linkTooltip": "Workload dashboard", "linkUrl": "/dashboard/db/istio-workload-dashboard?var-namespace=${__cell_3:raw}&var-workload=${__cell_2:raw}", "pattern": "destination_workload", "preserveFormat": false, "sanitize": false, "thresholds": [], "type": "hidden", "unit": "short" }, { "alias": "", "colorMode": null, "colors": [ "rgba(245, 54, 54, 0.9)", "rgba(237, 129, 40, 0.89)",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top