Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for desert (0.24 sec)

  1. pkg/kubelet/kubelet_test.go

    		if !tc.success {
    			assert.Error(t, err, fmt.Sprintf("[case %d] error", i))
    		} else {
    			assert.NoError(t, err, "[case %d] error", i)
    		}
    		// Access the log of the previous, terminated container
    		previous = true
    		_, err = kubelet.validateContainerLogStatus("podName", podStatus, containerName, previous)
    		if !tc.pSuccess {
    			assert.Error(t, err, fmt.Sprintf("[case %d] error", i))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    	ExecObjectLayerAPINilTest(t, nilBucket, nilObject, instanceType, apiRouter, nilReq)
    }
    
    func TestAPIHeadObjectHandlerWithEncryption(t *testing.T) {
    	globalPolicySys = NewPolicySys()
    	defer func() { globalPolicySys = nil }()
    
    	defer DetectTestLeak(t)()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    			ips := sets.New[string]()
    			ips.Insert(passthrough.GetUpstreamBindConfig().GetSourceAddress().Address)
    			for _, extra := range passthrough.GetUpstreamBindConfig().GetExtraSourceAddresses() {
    				ips.Insert(extra.GetAddress().GetAddress())
    			}
    			want := sets.New[string]()
    			if tt.ipv4Expected {
    				want.Insert("127.0.0.6")
    			}
    			if tt.ipv6Expected {
    				want.Insert("::6")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (!type.hasRank() || type.getRank() != 1) return {};
      if (port.size() != 2) return {};
      assert(port[0] == 0);
      return ValuePort(op.getOperand(port[1]));
    }
    
    ValuePort ComputeInputComponentFor(ConcatV2Op op, ArrayRef<unsigned int> port) {
      if (port.size() != 2) return {};
      assert(port[0] == 0);
    
      int64_t element_idx = port[1];
      for (Value val : op.getValues()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    				&model.WatchedResource{ResourceNames: tc.watchedResourceNames})
    			if delta != tc.usedDelta {
    				t.Errorf("un expected delta, want %v got %v", tc.usedDelta, delta)
    			}
    			assert.Equal(t, removed, tc.removedClusters)
    			assert.Equal(t, xdstest.MapKeys(xdstest.ExtractClusters(clusters)), tc.expectedClusters)
    		})
    	}
    }
    
    func TestBuildStaticClusterWithCredentialSocket(t *testing.T) {
    	g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          } else {
            return std::nullopt;
          }
    
          // Gather custom ops.
          custom_ops_[op_name].insert(op_desc);
        } else {
          // Insert failed op to `flex_ops` or `custom_ops`.
          if (is_allowed_flex_op) {
            failed_flex_ops_[op_name].insert(op_desc);
            tfl::AttachErrorCode(
                inst->emitOpError("is neither a custom op nor a flex op"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. go.sum

    github.com/alecholmes/xfccparser v0.3.0 h1:SI/zhgFw+CsoHnR2VXcbVg/9gij6T/ENT+1yqBOeLNA=
    github.com/alecholmes/xfccparser v0.3.0/go.mod h1:J9fzzUOtjw74IwNdGVbjnOVj1UDlwGQj1zZzgQRlRDY=
    github.com/alecthomas/assert/v2 v2.3.0 h1:mAsH2wmvjsuvyBvAmCtm7zFsBlb8mIHx5ySLVdDZXL0=
    github.com/alecthomas/assert/v2 v2.3.0/go.mod h1:pXcQ2Asjp247dahGEmsZ6ru0UVwnkhktn7S0bBDLxvQ=
    github.com/alecthomas/participle/v2 v2.1.0 h1:z7dElHRrOEEq45F2TG5cbQihMtNTv8vwldytDj7Wrz4=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top