Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for greatest (0.46 sec)

  1. cmd/site-replication.go

    		}
    
    		return c.annotatePeerErr(p.Name, deleteBucket, admClient.SRPeerBucketOps(ctx, bucket, op, nil))
    	},
    		deleteBucket,
    	)
    	return errors.Unwrap(cerr)
    }
    
    // PeerBucketMakeWithVersioningHandler - creates bucket and enables versioning.
    func (c *SiteReplicationSys) PeerBucketMakeWithVersioningHandler(ctx context.Context, bucket string, opts MakeBucketOptions) error {
    	objAPI := newObjectLayerFn()
    	if objAPI == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    				gofiles[i] = coverFile
    			} else {
    				cgofiles[i-len(gofiles)] = coverFile
    			}
    		}
    
    		if cfg.Experiment.CoverageRedesign {
    			if len(infiles) != 0 {
    				// Coverage instrumentation creates new top level
    				// variables in the target package for things like
    				// meta-data containers, counter vars, etc. To avoid
    				// collisions with user variables, suffix the var name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          shape_ty_zero_dim = true;
        } else if (size > 0) {
          shape_ty_size *= size;
        } else {
          return error_handler(
              llvm::formatv("requires 'shape' to have dimensions greater than -1, "
                            "but got {0} at index {1}",
                            size, dim.index()));
        }
        output_ty_shape.push_back(size);
      }
    
      if (!input_ty.hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          """
    
          out = math_ops.matmul(input_tensor, self.filters)
          return {'output': out}
    
      def _simple_model_data_gen(self) -> repr_dataset.RepresentativeDataset:
        """Creates an interable of representative samples.
    
        Yields:
          Representative samples, which is basically a mapping of: input key ->
          input value.
        """
        for _ in range(8):
          yield {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	NodeStartupLatencyTracker util.NodeStartupLatencyTracker
    	// remove it after cadvisor.UsingLegacyCadvisorStats dropped.
    	useLegacyCadvisorStats bool
    }
    
    // makePodSourceConfig creates a config.PodConfig from the given
    // KubeletConfiguration or returns an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </pre>
    
    <p>
    String addition creates a new string by concatenating the operands.
    </p>
    
    
    <h3 id="Comparison_operators">Comparison operators</h3>
    
    <p>
    Comparison operators compare two operands and yield an untyped boolean value.
    </p>
    
    <pre class="grammar">
    ==    equal
    !=    not equal
    &lt;     less
    &lt;=    less or equal
    &gt;     greater
    &gt;=    greater or equal
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    				},
    				SideEffects: &unknownSideEffect,
    			},
    			}, true),
    		expectedError: `Invalid value: 65536: port is not valid: must be between 1 and 65535, inclusive`,
    	}, {
    		name: "timeout seconds cannot be greater than 30",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:           "webhook.k8s.io",
    			ClientConfig:   validClientConfig,
    			SideEffects:    &unknownSideEffect,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    				t.Errorf("Unexpected error when syncing jobs: %v", err)
    			}
    			// validate created/deleted pods
    			if int32(len(fakePodControl.Templates)) != tc.expectedCreations {
    				t.Errorf("Unexpected number of creates.  Expected %d, saw %d\n", tc.expectedCreations, len(fakePodControl.Templates))
    			}
    			if tc.completionMode == batch.IndexedCompletion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    			}
    		}
    		if duplicateMatches == len(route.Match) {
    			reportUnreachable(routeName(route, rulen), "all matches used by prior rules")
    		}
    	}
    }
    
    // asJSON() creates a JSON serialization of a match, to use for match comparison.  We don't use the JSON itself.
    func asJSON(data any) string {
    	// Remove the name, so we can create a serialization that only includes traffic routing config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // op's type is deduced from `value`; if `value` is of scalar type,
    // wraps it up with a tensor type of empty shape.
    // TODO(jpienaar): This one differs from the autogenerated one as it takes an
    // attribute but always creates an ElementsAttr internally.
    void ConstOp::build(OpBuilder& builder, OperationState& result,
                        Attribute value) {
      ShapedType type;
      if (auto elem_attr = mlir::dyn_cast<ElementsAttr>(value)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top