Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 359 for Aggregate (0.13 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    		client,
    		kubecontroller.Options{
    			XDSUpdater:            xdsUpdater,
    			DomainSuffix:          "cluster.local",
    			MeshWatcher:           meshWatcher,
    			MeshServiceController: aggregate.NewController(aggregate.Options{MeshHolder: meshWatcher}),
    		},
    	)
    	configController := memory.NewController(memory.Make(collections.Pilot))
    
    	stop := istiotest.NewStop(t)
    	go configController.Run(stop)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    `publish`::
    _Depends on_: All `publish__PubName__PublicationTo__RepoName__Repository` tasks
    +
    An aggregate task that publishes all defined publications to all defined repositories.
    
    [[publishing_ivy:publications]]
    == Publications
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. operator/pkg/verifier/verifier.go

    		} else {
    			v.logger.LogAndPrintf("! No Istio installation found")
    		}
    		return fmt.Errorf("no Istio installation found")
    	}
    	if err != nil {
    		// Don't return full error; it is usually an unwieldy aggregate
    		return fmt.Errorf("Istio installation failed") // nolint
    	}
    	v.logger.LogAndPrintf("%s Istio is installed and verified successfully", v.successMarker)
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/runtime/mgcwork.go

    	// next.
    	//
    	// Invariant: Both wbuf1 and wbuf2 are nil or neither are.
    	wbuf1, wbuf2 *workbuf
    
    	// Bytes marked (blackened) on this gcWork. This is aggregated
    	// into work.bytesMarked by dispose.
    	bytesMarked uint64
    
    	// Heap scan work performed on this gcWork. This is aggregated into
    	// gcController by dispose and may also be flushed by callers.
    	// Other types of scan work are flushed immediately.
    	heapScanWork int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds.go

    			}
    		default:
    			// Should never happen
    			log.Warnf("unknown credential type %q", r.Type)
    			pilotSDSCertificateErrors.Increment()
    		}
    	}
    
    	// If we filtered any out, report an error. We aggregate errors in one place here, rather than in the loop,
    	// to avoid excessive logs.
    	if len(deniedResources) > 0 {
    		errMessage := authzError
    		if errMessage == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/storage_test.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Ready", Type: "string", Description: "The aggregate readiness state of this pod for accepting traffic."},
    		{Name: "Status", Type: "string", Description: "The aggregate status of the containers in this pod."},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  7. tensorflow/c/eager/gradients.cc

      // and not for correctness. The only downside of keeping this 1 seems to be
      // that the gradient accumulation is unbounded and we will never
      // aggressively aggregate accumulated gradients to recover memory.
      // Revisit and fix.
      return 1;
    }
    
    // Consumes references to the tensors in the gradient_tensors list and returns
    // a tensor with the result.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/quota/v1/evaluator/core/pods.go

    func (p *podEvaluator) Usage(item runtime.Object) (corev1.ResourceList, error) {
    	// delegate to normal usage
    	return PodUsageFunc(item, p.clock)
    }
    
    // UsageStats calculates aggregate usage for the object.
    func (p *podEvaluator) UsageStats(options quota.UsageStatsOptions) (quota.UsageStats, error) {
    	return generic.CalculateUsageStats(options, p.listFuncByNamespace, podMatchesScopeFunc, p.Usage)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  9. docs/bigdata/README.md

    ```
    sudo pip install yq
    alias kv-pairify='yq ".configuration[]" | jq ".[]" | jq -r ".name + \"=\" + .value"'
    ```
    
    Let's take for example a set of 12 compute nodes with an aggregate memory of _1.2TiB_, we need to do following settings for optimal results. Add the following optimal entries for _core-site.xml_ to configure _s3a_ with **MinIO**. Most important options here are
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  10. src/runtime/syscall_windows.go

    	// TODO(rsc): On arm and arm64 do we need to skip the caller's saved LR?
    	p.srcStackSize += goarch.PtrSize
    }
    
    // tryRegAssignArg tries to register-assign a value of type t.
    // If this type is nested in an aggregate type, then offset is the
    // offset of this type within its parent type.
    // Assumes t.size <= goarch.PtrSize and t.size != 0.
    //
    // Returns whether the assignment succeeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top