Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for Types (0.12 sec)

  1. pkg/apis/batch/validation/validation_test.go

    					ResourceVersion: "5",
    				},
    				Status: batch.JobStatus{
    					UncountedTerminatedPods: &batch.UncountedTerminatedPods{
    						Succeeded: []types.UID{"a", "b", "c", "a", ""},
    						Failed:    []types.UID{"c", "d", "e", "d", ""},
    					},
    				},
    			},
    			wantErrs: field.ErrorList{
    				{Type: field.ErrorTypeDuplicate, Field: "status.uncountedTerminatedPods.succeeded[3]"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v0.AuxInt = int64ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpRISCV64MOVBstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(2)
    		v2 := b.NewValue0(v.Pos, OpRISCV64MOVBstore, types.TypeMem)
    		v2.AuxInt = int32ToAuxInt(1)
    		v3 := b.NewValue0(v.Pos, OpRISCV64MOVBstore, types.TypeMem)
    		v3.AddArg3(ptr, v0, mem)
    		v2.AddArg3(ptr, v0, v3)
    		v1.AddArg3(ptr, v0, v2)
    		v.AddArg3(ptr, v0, v1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
    
      // Infers shape of tf.While/tf.WhileRegion. If `shape_invariant` attribute is
      // set, operand types are set as result types if associated body result types
      // match the operand type (does not change per loop iteration). If operand and
      // body result types are not the same, only handle types are propagated to
      // result types. This is necessary to not incorrectly change result shapes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    		terminatingErr          error
    		prepareWorker           func(t *testing.T, w *podWorkers, records map[types.UID][]syncPodRecord)
    		wantWorker              func(t *testing.T, w *podWorkers, records map[types.UID][]syncPodRecord)
    		wantWorkerAfterRetry    func(t *testing.T, w *podWorkers, records map[types.UID][]syncPodRecord)
    		wantErr                 bool
    		expectMetrics           map[string]string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    components have identical types. In detail:
    </p>
    
    <ul>
    	<li>Two array types are identical if they have identical element types and
    	    the same array length.</li>
    
    	<li>Two slice types are identical if they have identical element types.</li>
    
    	<li>Two struct types are identical if they have the same sequence of fields,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // two types are equal.
    
    template <typename T1, typename T2>
    struct AssertTypeEq;
    
    template <typename T>
    struct AssertTypeEq<T, T> {
      typedef bool type;
    };
    
    // A unique type used as the default value for the arguments of class
    // template Types.  This allows us to simulate variadic templates
    // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        capture.
    
        input: A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
        cond: A region that takes 'input' and returns a boolean scalar tensor.
        body: A region that takes a list of tensors and returns another
              list of tensors. Both lists have the same types.
      }];
    
      let arguments = (ins
        Variadic<AnyTensor>:$input,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        llvm::function_ref<APFloat(APFloat, APFloat)> float_calculate,
        llvm::function_ref<APInt(APInt, APInt)> int_calculate) {
      // Note: All types are wrapped in tensor types in TFlite. E.g., f32 is
      // represented as tensor<f32>. So we are only handling tensor types here.
      auto type = result_type.dyn_cast<ShapedType>();
      if (!type) return {};
    
      auto elemType = type.getElementType();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	if expect, actual := []types.UID(nil), kubelet.podWorkers.(*fakePodWorkers).triggeredDeletion; !reflect.DeepEqual(expect, actual) {
    		t.Fatalf("expected %v kills, got %v", expect, actual)
    	}
    
    	ready = true
    	kubelet.HandlePodRemoves(pods)
    	time.Sleep(2 * time.Second)
    
    	// Sources are ready. Remove unwanted pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    
    	var types strings.Builder
    	if len(cl.Types) == 0 {
    		fmt.Fprintf(&types, "%*sTypes: nil", indent+2, "")
    	} else {
    		fmt.Fprintf(&types, "%*sTypes:", indent+2, "")
    		for i, t := range cl.Types {
    			types.WriteByte('\n')
    			types.WriteString(t.goString(indent+4, fmt.Sprintf("%d: ", i)))
    		}
    	}
    
    	var callConstraint string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top