Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for meaningful (0.17 sec)

  1. src/cmd/go/internal/vcs/discovery.go

    import (
    	"encoding/xml"
    	"fmt"
    	"io"
    	"strings"
    )
    
    // charsetReader returns a reader that converts from the given charset to UTF-8.
    // Currently it only supports UTF-8 and ASCII. Otherwise, it returns a meaningful
    // error which is printed by go get, so the user can find why the package
    // wasn't downloaded if the encoding is not supported. Note that, in
    // order to reduce potential errors, ASCII is treated as UTF-8 (i.e. characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

     * When running with the daemon, success is dependent on DaemonConnector forking the daemon process with the right classpath.
     *
     * This test is not meaningful when running the embedded integration test mode, so we ignore it in that case.
     */
    class SystemClassLoaderTest extends AbstractIntegrationSpec {
    
        static heading = "systemClassLoader info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     *
     * - Should be practically immutable
     * - Should only expose primitive(ish) JDK types, or other structured types only exposing JDK types
     * - Collection like structures should have deterministic order - either sorted, or meaningful
     * - Should expose either java.util.List or java.util.Map over specialised collection types
     *
     * Implementations can assume that their getters will be called at-most-once.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    		return false
    	}
    	return true
    }
    
    // checkAndUpdatePod updates existing, and:
    //   - if ref makes a meaningful change, returns needUpdate=true
    //   - if ref makes a meaningful change, and this change is graceful deletion, returns needGracefulDelete=true
    //   - if ref makes no meaningful change, but changes the pod status, returns needReconcile=true
    //   - else return all false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_outside.txt

    # 'go list -m -versions' should succeed even without an explicit version.
    go list -m -versions example.com/version
    stdout 'v1.0.0\s+v1.0.1\s+v1.1.0'
    
    # 'go list -m all' should fail. "all" is not meaningful outside of a module.
    ! go list -m all
    stderr 'go: cannot match "all": go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    # 'go list -m <mods> all' should also fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

                testLauncher.run()
            };
            then:
            def e = thrown(ListenerFailedException)
            e.cause.message == "failing progress listener"
        }
    
        def "fails with meaningful error when no tests declared"() {
            when:
            launchTests([])
    
            then:
            def e = thrown(TestExecutionException)
            e.message == "No test declared for execution."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding.go

    // RequiredEntropyBits makes a quick and slightly conservative estimate of the number
    // of bits of hash value that are consumed in shuffle sharding a deck of the given size
    // to a hand of the given size.  The result is meaningful only if
    // 1 <= handSize <= deckSize <= 1<<26.
    func RequiredEntropyBits(deckSize, handSize int) int {
    	return int(math.Ceil(math.Log2(float64(deckSize)) * float64(handSize)))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 08:38:03 UTC 2019
    - 4K bytes
    - Viewed (0)
  8. src/runtime/memclr_arm64.s

    	STP.W	(ZR, ZR), 64(R0)
    	SUBS	$64, R1, R1
    	BGE	loop_64
    	ANDS	$63, R1, ZR
    	ADD	$16, R0, R0
    	BNE	tail63
    	RET
    
    try_zva:
    	// Try using the ZVA feature to zero entire cache lines
    	// It is not meaningful to use ZVA if the block size is less than 64,
    	// so make sure that n is greater than or equal to 64
    	CMP	$63, R1
    	BLE	tail63
    
    	CMP	$128, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

    public class HashStringBenchmark {
      static class MaxCodePoint {
        final int value;
    
        /**
         * Convert the input string to a code point. Accepts regular decimal numerals, hex strings, and
         * some symbolic names meaningful to humans.
         */
        private static int decode(String userFriendly) {
          try {
            return Integer.decode(userFriendly);
          } catch (NumberFormatException ignored) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 5.3K bytes
    - Viewed (0)
  10. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage_test.go

    	}
    	obj, err := storage.Get(ctx, "foo", &metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	autoscalerOut := obj.(*autoscaling.HorizontalPodAutoscaler)
    	// only compare the meaningful update b/c we can't compare due to metadata
    	if !apiequality.Semantic.DeepEqual(autoscalerIn.Status, autoscalerOut.Status) {
    		t.Errorf("unexpected object: %s", cmp.Diff(autoscalerIn, autoscalerOut))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top