Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 709 for Shards (0.18 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

     *
     * Note: to avoid 260 char path length limitation on Windows, we should keep the test dir path as short as possible,
     * ideally < 90 chars (from repo root to test dir root, e.g. "core/build/tmp/teŝt files/{TestClass}/{testMethod}/qqlj8"),
     * or < 40 chars for "{TestClass}/{testMethod}/qqlj8"
     */
    public abstract class AbstractTestDirectoryProvider implements TestRule, TestDirectoryProvider {
        protected final TestFile root;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding.go

    	}
    
    	return &Dealer{
    		deckSize: deckSize,
    		handSize: handSize,
    	}, nil
    }
    
    // Deal shuffles a card deck and deals a hand of cards, using the given hashValue as the source of entropy.
    // The deck size and hand size are properties of the Dealer.
    // This function synchronously makes sequential calls to pick, one for each dealt card.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 08:38:03 UTC 2019
    - 4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

       */
      @Override
      @CheckForNull
      protected final char[] escape(int cp) {
        if (cp < replacementsLength) {
          char[] chars = replacements[cp];
          if (chars != null) {
            return chars;
          }
        }
        if (cp >= safeMin && cp <= safeMax) {
          return null;
        }
        return escapeUnsafe(cp);
      }
    
      /* Overridden for performance. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2_test.go

    		dataDir          string
    		data             []byte
    		shares           int
    		transitionStatus string
    		restoreObjStatus string
    		expireRestored   bool
    		expectedDataDir  string
    	}{
    		{ // object versions with inlined data don't count towards shared data directory
    			versionID: mustGetUUID(),
    			dataDir:   d0,
    			data:      data,
    			shares:    0,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml

      <artifactId>utf-8</artifactId>
      <version>0.1-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-2254 :: UTF-8</name>
      <description>TEST-CHARS: ßıΣЯא€</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/profile-dump.go

    	inFilenames []string
    	// configPath sets the root node for the subtree to display the config for.
    	configPath string
    	// outputFormat controls the format of profile dumps
    	outputFormat string
    	// manifestsPath is a path to a charts and profiles directory in the local filesystem with a release tgz.
    	manifestsPath string
    }
    
    const (
    	jsonOutput  = "json"
    	yamlOutput  = "yaml"
    	flagsOutput = "flags"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ContinuousScopeIdsIntegrationTest.groovy

            then:
            buildTriggeredAndSucceeded()
            afterBuild()
    
            and:
            // This fixture tests that each build invocation has a unique build scope ID
            // and that each invocation shares the user and workspace scope IDs,
            // which is really what we are testing here.
            scopeIds.buildCount == 3
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 11 09:57:23 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/qos_container_manager_linux.go

    			burstablePodCPURequest += request.MilliValue()
    		}
    	}
    
    	// make sure best effort is always 2 shares
    	bestEffortCPUShares := uint64(MinShares)
    	configs[v1.PodQOSBestEffort].ResourceParameters.CPUShares = &bestEffortCPUShares
    
    	// set burstable shares based on current observe state
    	burstableCPUShares := MilliCPUToShares(burstablePodCPURequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pkg/util/taints/taints_test.go

    			spec:        []string{"foo=nospecialchars%^@:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with non-alphanumeric characters",
    			spec:        []string{"foo=Tama-nui-te-rā.is.Māori.sun:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with special chars '\\'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  10. operator/pkg/helm/helm.go

    // TemplateRenderer defines a helm template renderer interface.
    type TemplateRenderer interface {
    	// Run starts the renderer and should be called before using it.
    	Run() error
    	// RenderManifest renders the associated helm charts with the given values YAML string and returns the resulting
    	// string.
    	RenderManifest(values string) (string, error)
    	// RenderManifestFiltered filters manifests to render by template file name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top