Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for withZip (0.14 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final int segmentShift;
    
      /** The segments, each of which is a specialized hash table. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        counter=$((counter+1))
        echo -n .
        if [[ ${counter} -ge 1800 ]]; then
          echo -e "${color_red}TIMEOUT${color_norm}" >&2
          echo -e "${color_red}Load balancer failed to initialize within ${counter} seconds.${color_norm}" >&2
          exit 2
        fi
      done
      echo "DONE"
    }
    
    
    # attach-internal-master-ip attach internal ip to existing master.
    #
    # Assumes:
    # * PROJECT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    }
    
    // MetricNamespace is top level grouping of metrics to create the metric name.
    type MetricNamespace string
    
    // MetricSubsystem is the sub grouping for metrics within a namespace.
    type MetricSubsystem string
    
    const (
    	bucketMetricNamespace    MetricNamespace = "minio_bucket"
    	clusterMetricNamespace   MetricNamespace = "minio_cluster"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * used to bail after 20ms during the expected-successful tests, and there we saw a failure rate
       * of ~1/5000, meaning that the other thread's get() call nearly always completes within 20ms if
       * it's going to complete at all).
       *
       * <p>[*] To avoid hangs, I've disabled the in-thread calls. This makes the test take (very
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * used to bail after 20ms during the expected-successful tests, and there we saw a failure rate
       * of ~1/5000, meaning that the other thread's get() call nearly always completes within 20ms if
       * it's going to complete at all).
       *
       * <p>[*] To avoid hangs, I've disabled the in-thread calls. This makes the test take (very
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    				}
    			} else {
    				// if this is a serviceEntry, allow ~ in exportTo as it can be used to create
    				// a service that is not even visible within the local namespace to anyone other
    				// than the proxies of that service.
    				if isServiceEntry && visibility.Instance(e) == visibility.None {
    					exportToSet.Insert(key)
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		}
    		switch quote {
    		case '\'':
    			// “preserve the literal value of each character”
    			flag = append(flag, c)
    			continue
    		case '"':
    			// “preserve the literal value of all characters within the double-quotes,
    			// with the exception of …”
    			switch c {
    			case '`', '$', '\\':
    			default:
    				flag = append(flag, c)
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    // the sym to a newly created section. Section name is set from the
    // symbol name. "Seg" is the segment into which to place the new
    // section, "forceType" is the new sym.SymKind to assign to the symbol
    // within the section, and "rwx" holds section permissions.
    func (state *dodataState) allocateSingleSymSections(seg *sym.Segment, symn sym.SymKind, forceType sym.SymKind, rwx int) {
    	ldr := state.ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					}
    				})
    			}
    		})
    	}
    }
    
    // TestValidationExpressionsInSchema tests CEL integration with custom resource values and OpenAPIv3 for cases
    // where the validation rules are defined at any level within the schema.
    func TestValidationExpressionsAtSchemaLevels(t *testing.T) {
    	tests := []struct {
    		name   string
    		schema *schema.Structural
    		obj    interface{}
    		oldObj interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. src/reflect/value.go

    	default:
    		return v.Type().Comparable()
    	}
    }
    
    // Equal reports true if v is equal to u.
    // For two invalid values, Equal will report true.
    // For an interface value, Equal will compare the value within the interface.
    // Otherwise, If the values have different types, Equal will report false.
    // Otherwise, for arrays and structs Equal will compare each element in order,
    // and report false if it finds non-equal elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top