Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Zach (0.14 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p>If your index may associate multiple values with each key, use {@link
       * Multimaps#index(Iterator, Function) Multimaps.index}.
       *
       * @param values the values to use when constructing the {@code Map}
       * @param keyFunction the function used to produce the key for each value
       * @return a map mapping the result of evaluating the function {@code keyFunction} on each value
       *     in the input collection to that value
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

            <field>
              <name>licenses</name>
              <version>3.0.0+</version>
              <description>
                <![CDATA[
                This element describes all the licenses for this project.
                Each license is described by a {@code license} element, which
                is then described by additional elements.
                Projects should only list the license(s) that applies to the project
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	healDisks := make(map[string]struct{}, len(healing.HealDisks))
    	for _, disk := range healing.HealDisks {
    		healDisks[disk] = struct{}{}
    	}
    
    	// find all disks which belong to each respective endpoints
    	for i, disk := range storageInfo.Disks {
    		if _, ok := healDisks[disk.Endpoint]; ok {
    			storageInfo.Disks[i].Healing = true
    		}
    	}
    
    	// Marshal API response
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  4. cmd/object-handlers_test.go

    		if ok, msg := cmpReaders(refReader, rec.Body); !ok {
    			t.Fatalf("(%s) Object: %s Case %d ByteRange: %s --> data mismatch! (msg: %s)", instanceType, oi.objectName, i+1, byteRange, msg)
    		}
    	}
    
    	// Iterate over each uploaded object and do a bunch of get
    	// requests on them.
    	caseNumber := 0
    	signFns := []testSignedReqFn{newTestSignedRequestV2, newTestSignedRequestV4}
    	for _, oi := range objectInputs {
    		objLen := objectLength(oi)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    func (s *replicationResyncer) PersistToDisk(ctx context.Context, objectAPI ObjectLayer) {
    	resyncTimer := time.NewTimer(resyncTimeInterval)
    	defer resyncTimer.Stop()
    
    	// For each bucket name, store the last timestamp of the
    	// successful save of replication status in the backend disks.
    	lastResyncStatusSave := make(map[string]time.Time)
    
    	for {
    		select {
    		case <-resyncTimer.C:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  6. cmd/metrics-v2.go

    					Type:      gaugeMetric,
    				},
    				Value: pluginAuthNMetrics.MaxSuccRTTMs,
    			},
    		}
    
    		return metrics
    	})
    	return mg
    }
    
    // replication metrics for each node - published to the cluster endpoint with nodename as label
    func getReplicationNodeMetrics(opts MetricsGroupOpts) *MetricsGroupV2 {
    	mg := &MetricsGroupV2{
    		cacheInterval:    1 * time.Minute,
    		metricsGroupOpts: opts,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Users can now traverse all the pods that are in the scheduler and waiting in the permit stage through method `IterateOverWaitingPods`. In other words,  all waitingPods in scheduler can be obtained from any profiles. Before this commit, each profile could only obtain `waitingPods` within that profile ([#122946](https://github.com/kubernetes/kubernetes/pull/122946), [@NoicFank](https://github.com/NoicFank))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    		errMap:     errMap,
    		summaryErr: c.toErrorFromErrMap(errMap, actionName),
    	}
    }
    
    // concDo calls actions concurrently. selfActionFn is run for the current
    // cluster and peerActionFn is run for each peer replication cluster.
    func (c *SiteReplicationSys) concDo(selfActionFn func() error, peerActionFn func(deploymentID string, p madmin.PeerInfo) error, actionName string) error {
    	depIDs := make([]string, 0, len(c.state.Peers))
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
Back to top