Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for RAW (0.31 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. go.sum

    github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
    github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
    github.com/ledongthuc/pdf v0.0.0-20220302134840-0c2507a12d80/go.mod h1:imJHygn/1yfhB7XSJJKlFZKl/J+dCPAknuiaGOshXAs=
    github.com/lestrrat-go/backoff/v2 v2.0.8 h1:oNb5E5isby2kiro9AgdHLv5N5tint1AnDVVf2E2un5A=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - DRA: ResourceClaim and PodSchedulingContext status updates no longer allow changing object meta data. ([#123730](https://github.com/kubernetes/kubernetes/pull/123730), [@pohly](https://github.com/pohly))
    - Enabled deletion of pods that use raw block volumes on node reboot. ([#122211](https://github.com/kubernetes/kubernetes/pull/122211), [@gnufied](https://github.com/gnufied))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    						req.URL.Path = filepath.ToSlash(nlq.Files[0])
    					}
    				}
    				// Fall back in case the caller is directly trying to query a file
    				// Example: kubectl get --raw /api/v1/nodes/$name/proxy/logs/foo.log
    				file.ServeHTTP(w, req)
    			}))
    		} else {
    			kl.logServer = http.StripPrefix("/logs/", file)
    		}
    	}
    	if kl.kubeClient == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Allow deletion of pods that use raw block volumes on node reboot ([#122211](https://github.com/kubernetes/kubernetes/pull/122211), [@gnufied](https://github.com/gnufied)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. RELEASE.md

            TPUs. See
            [usage guide](https://www.tensorflow.org/guide/keras/mixed_precision).
        *   Introduced the `TextVectorization` layer, which takes as input raw
            strings and takes care of text standardization, tokenization, n-gram
            generation, and vocabulary indexing. See this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // request is made at the prefix to verify the <meta> tags match.
    //
    // The meta tag should appear as early in the file as possible.
    // In particular, it should appear before any raw JavaScript or CSS,
    // to avoid confusing the go command's restricted parser.
    //
    // The vcs is one of "bzr", "fossil", "git", "hg", "svn".
    //
    // The repo-root is the root of the version control system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    	ts := newClientServerTest(t, mode, mux).ts
    
    	// net/http uses HTTP/1.1 for requests, so write requests manually
    	tests := []struct {
    		req    string   // raw http request
    		expect []string // expected Connection header(s)
    	}{
    		{
    			req:    "GET / HTTP/1.0\r\n\r\n",
    			expect: nil,
    		},
    		{
    			req:    "OPTIONS * HTTP/1.0\r\n\r\n",
    			expect: nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top