Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for E2 (0.08 sec)

  1. pkg/api/pod/util_test.go

    				EphemeralContainers: []api.EphemeralContainer{
    					{EphemeralContainerCommon: api.EphemeralContainerCommon{Name: "e1"}},
    					{EphemeralContainerCommon: api.EphemeralContainerCommon{Name: "e2"}},
    				},
    			},
    			wantContainers: []string{"e1", "e2"},
    			mask:           EphemeralContainers,
    		},
    		{
    			desc: "all container types",
    			spec: &api.PodSpec{
    				Containers: []api.Container{
    					{Name: "c1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	resizeDone, err := og.nodeExpandVolume(volumeToMount, actualStateOfWorld, resizeOptions)
    	if err != nil {
    		e1, e2 := volumeToMount.GenerateError("NodeExpandVolume.NodeExpandVolume failed", err)
    		klog.Errorf(e2.Error())
    		return false, e1, e2
    	}
    	if resizeDone {
    		markingDone := actualStateOfWorld.MarkVolumeAsResized(volumeToMount.VolumeName, &resizeOptions.NewSize)
    		if !markingDone {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      absl::c_stable_sort(in_edges, [](const Edge* e1, const Edge* e2) {
        if (e1->IsControlEdge() && !e2->IsControlEdge()) return false;
        if (!e1->IsControlEdge() && e2->IsControlEdge()) return true;
        if (e1->IsControlEdge() && e2->IsControlEdge())
          return e1->src()->id() < e2->src()->id();
        return e1->dst_input() < e2->dst_input();
      });
    
      result.operands.reserve(in_edges.size());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    						"e2": integerType,
    					}),
    				}),
    			}),
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			valid: []string{
    				"has(self.a.b)",
    				"!has(self.a.c)",
    				"!has(self.a.d)", // We treat null value fields the same as absent fields in CEL
    				"has(self.a1.b1.c1)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    			continue
    		}
    	}
    }
    
    const ed25519Certificate = `
    Certificate:
        Data:
            Version: 3 (0x2)
            Serial Number:
                0c:83:d8:21:2b:82:cb:23:98:23:63:e2:f7:97:8a:43:5b:f3:bd:92
            Signature Algorithm: ED25519
            Issuer: CN = Ed25519 test certificate
            Validity
                Not Before: May  6 17:27:16 2019 GMT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/net/http/server.go

    func (w *response) Flush() {
    	w.FlushError()
    }
    
    func (w *response) FlushError() error {
    	if !w.wroteHeader {
    		w.WriteHeader(StatusOK)
    	}
    	err := w.w.Flush()
    	e2 := w.cw.flush()
    	if err == nil {
    		err = e2
    	}
    	return err
    }
    
    func (c *conn) finalFlush() {
    	if c.bufr != nil {
    		// Steal the bufio.Reader (~4KB worth of memory) and its associated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                <![CDATA[
                  The timezone the contributor is in. Typically, this is a number in the range
                  <a href="http://en.wikipedia.org/wiki/UTC%E2%88%9212:00">-12</a> to <a href="http://en.wikipedia.org/wiki/UTC%2B14:00">+14</a>
                  or a valid time zone id like "America/Montreal" (UTC-05:00) or "Europe/Paris" (UTC+01:00).
                ]]>
              </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top