Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 602 for repeated (0.65 sec)

  1. src/encoding/json/encode_test.go

    			}
    		})
    	}
    }
    
    type BugA struct {
    	S string
    }
    
    type BugB struct {
    	BugA
    	S string
    }
    
    type BugC struct {
    	S string
    }
    
    // Legal Go: We never use the repeated embedded field (S).
    type BugX struct {
    	A int
    	BugA
    	BugB
    }
    
    // golang.org/issue/16042.
    // Even if a nil interface value is passed in, as long as
    // it implements Marshaler, it should be marshaled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // source code analysis tools exactly how test binaries are constructed.
    // The reported import path for a test binary is the import path of
    // the package followed by a ".test" suffix, as in "math/rand.test".
    // When building a test, it is sometimes necessary to rebuild certain
    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        // equals to the `scales_size`. The broadcast skips;
        // - for Reshape, the data layout isn't changed but the innermost dimension
        // is expand to cover the last two original dimensions. Thus we just need to
        // be repeated the `scales` dim[2] times to covers the new dim length.
        if (BroadcastVector<double>(shaped.getDimSize(quant_dim), scales) ||
            BroadcastVector<int64_t>(shaped.getDimSize(quant_dim), zero_points)) {
          return {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    			*jobCtx.terminating += removed
    		}
    		// While it is possible for a Job to require both pod creations and
    		// deletions at the same time (e.g. indexed Jobs with repeated indexes), we
    		// restrict ourselves to either just pod deletion or pod creation in any
    		// given sync cycle. Of these two, pod deletion takes precedence.
    		return active, metrics.JobSyncActionPodsDeleted, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			function:   "replace",
    			targetSize: exactSize(3),
    			argSizes:   exactSizes(1, 0),
    			expectSize: checker.SizeEstimate{Min: 0, Max: 3},
    		},
    		{
    			name:       "maybe replace repeated",
    			function:   "replace",
    			targetSize: exactSize(4),
    			argSizes:   exactSizes(2, 4),
    			expectSize: checker.SizeEstimate{Min: 4, Max: 8},
    		},
    		{
    			name:       "maybe replace empty",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption.go

    		}
    	}
    
    	return
    }
    
    // Builds new PodDisruption map, possibly removing items that refer to non-existing, already deleted
    // or not-deleted at all items. Also returns an information when this check should be repeated.
    func (dc *DisruptionController) buildDisruptedPodMap(logger klog.Logger, pods []*v1.Pod, pdb *policy.PodDisruptionBudget, currentTime time.Time) (map[string]metav1.Time, *time.Time) {
    	disruptedPods := pdb.Status.DisruptedPods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// The availableOnNode node filter of the claim converted from the
    	// v1 API to nodeaffinity.NodeSelector by PreFilter for repeated
    	// evaluation in Filter. Nil for claim which don't have it.
    	availableOnNode *nodeaffinity.NodeSelector
    
    	// The status of the claim got from the
    	// schedulingCtx by PreFilter for repeated
    	// evaluation in Filter. Nil for claim which don't have it.
    	status *resourcev1alpha2.ResourceClaimSchedulingStatus
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. cmd/endpoint.go

    // for FS and Erasure mode. In case of distributed server return
    // the first element from the set of peers which indicate that
    // they are local. There is always one entry that is local
    // even with repeated server endpoints.
    func GetLocalPeer(endpointServerPools EndpointServerPools, host, port string) (localPeer string) {
    	peerSet := set.NewStringSet()
    	for _, ep := range endpointServerPools {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let arguments = (ins
        TF_VariantTensor:$input_dataset,
        Arg<TF_Int64Tensor, [{A scalar representing the number of times that `input_dataset` should
    be repeated. A value of `-1` indicates that it should be repeated infinitely.}]>:$count,
    
        ConfinedAttr<TypeArrayAttr, [ArrayMinCount<1>]>:$output_types,
        ConfinedAttr<TF_ShapeAttrArray, [ArrayMinCount<1>]>:$output_shapes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableMap.java

         *
         * <p>In the current implementation, all values associated with a given key are stored in the
         * {@code Builder} object, even though only one of them will be used in the built map. If there
         * can be many repeated keys, it may be more space-efficient to use a {@link
         * java.util.LinkedHashMap LinkedHashMap} and {@link ImmutableMap#copyOf(Map)} rather than
         * {@code ImmutableMap.Builder}.
         *
         * @since 31.1
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top