Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for Table1 (0.27 sec)

  1. pilot/pkg/xds/ads.go

    	// initialize with empty config, leading to reconnected Envoys loosing
    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    	// See https://github.com/istio/istio/issues/25495.
    	if !s.IsServerReady() {
    		return status.Error(codes.Unavailable, "server is not ready to serve discovery information")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/noderesources.go

    	//   we might not need to change any ResourceSlice.
    	//
    	// For now syncing starts immediately, with no DeleteCollection. This
    	// can be reconsidered later.
    
    	// Wait until we're able to get a Node object.
    	// This means that the object is created on the API server,
    	// the kubeclient is functional and the node informer cache is populated with the node object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	Subresources *CustomResourceSubresources `json:"subresources,omitempty" protobuf:"bytes,5,opt,name=subresources"`
    	// additionalPrinterColumns specifies additional columns returned in Table output.
    	// See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details.
    	// If no columns are specified, a single column displaying the age of the custom resource is used.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. docs/metrics/v3.md

    ## Request, System and Cluster Metrics
    
    At a high level metrics are grouped into three categories, listed in the following sub-sections. The path in each of the tables is relative to the top-level endpoint.
    
    ### Request metrics 
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    		for _, l := range s.Location {
    			if l == nil {
    				return fmt.Errorf("sample has nil location")
    			}
    		}
    	}
    
    	// Check that all mappings/locations/functions are in the tables
    	// Check that there are no duplicate ids
    	mappings := make(map[uint64]*Mapping, len(p.Mapping))
    	for _, m := range p.Mapping {
    		if m == nil {
    			return fmt.Errorf("profile has nil mapping")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            when:
            configurationCacheRunLenient "thing", "-DCI=$value"
    
            then:
            configurationCache.assertStateStored()
            // TODO - use problems configurationCache, need to be able to ignore problems from the Kotlin plugin
            problems.assertResultHasProblems(result) {
                withInput("$location: system property 'CI'")
                ignoringUnexpectedInputs()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tpu_device.cc

                  xla_output->shaped_buffer()));
    
          // We need a single definition event for an XlaTensor, so make the
          // device to device stream wait for the stream that wrote the tuple index
          // tables on the destination device. Should this prove to be a problem,
          // we can always extend XlaTensor to take a pair of definition events that
          // must all be satisfied, or add an Event::Merge() API that allows us to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      llvm::SmallDenseSet<FuncOp> visited_functions;
      auto tf_dialect = module.getContext()->getLoadedDialect("tf");
      // Construct SymbolTable to enable cheap function lookups. The cost
      // of constructing the table is offset by the number of queries.
      SymbolTable symbol_table(module);
      for (auto function : module.getOps<FuncOp>()) {
        if (function.isExternal())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    	// Don't verify result conditions if there's no error handler installed:
    	// in that case, an error leads to an exit panic and the result value may
    	// be incorrect. But in that case it doesn't matter because callers won't
    	// be able to use it either.
    	if check.conf.Error != nil {
    		defer func() {
    			assert(inferred == nil || len(inferred) == len(tparams) && !containsNil(inferred))
    		}()
    	}
    
    	if traceInference {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    	// initialize with empty config, leading to reconnected Envoys loosing
    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    	// See https://github.com/istio/istio/issues/25495.
    	if !s.IsServerReady() {
    		return errors.New("server is not ready to serve discovery information")
    	}
    
    	ctx := stream.Context()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top