Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for useless3 (0.92 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        // For this the rest of the name does not need any dots in its name.
                        // It is either completely a inner static class or it is not.
                        // Since we do not want to have useless lookups we create the name
                        // completely and use a ConstructedClassWithPackage to prevent lookups against the package.
                        String className = aliasedNode.getNameWithoutPackage() + '$'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	httpRoute := BuildDefaultHTTPOutboundRoute(cluster, traceOperation, mesh)
    
    	// if this host has no virtualservice, the consistentHash on its destinationRule will be useless
    	hashPolicy := consistentHashToHashPolicy(hash)
    	if hashPolicy != nil {
    		httpRoute.GetRoute().HashPolicy = []*route.RouteAction_HashPolicy{hashPolicy}
    	}
    	return VirtualHostWrapper{
    		Port:     port.Port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    			// represented accurately in the go/constant package.
    			// Constant literals that are longer than this many bits
    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    			t.Errorf("%d. (%v).Overlaps(%v) = %v; want %v", i, tt.b, tt.a, got, tt.want)
    		}
    	}
    }
    
    // Sink variables are here to force the compiler to not elide
    // seemingly useless work in benchmarks and allocation tests. If you
    // were to just `_ = foo()` within a test function, the compiler could
    // correctly deduce that foo() does nothing and doesn't need to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			// represented accurately in the go/constant package.
    			// Constant literals that are longer than this many bits
    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/net/dnsclient_unix_test.go

    		// Without stuff before onion/local, they're fine to
    		// use DNS. With a search path,
    		// "onion.vegetables.com" can use DNS. Without a
    		// search path (or with a trailing dot), the queries
    		// are just kinda useless, but don't reveal anything
    		// private.
    		{"local", false},
    		{"onion", false},
    		{"local.", false},
    		{"onion.", false},
    	}
    	for _, tt := range tests {
    		got := avoidDNS(tt.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    		prof := w.String()
    
    		if !strings.HasPrefix(prof, "--- contention:\ncycles/second=") {
    			t.Fatalf("Bad profile header:\n%v", prof)
    		}
    
    		if strings.HasSuffix(prof, "#\t0x0\n\n") {
    			t.Errorf("Useless 0 suffix:\n%v", prof)
    		}
    
    		for _, test := range tests {
    			if !regexp.MustCompile(strings.ReplaceAll(test.re, "\t", "\t+")).MatchString(prof) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	}
    
    	cmd := exec.Command(argv[0], argv[1:]...)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		Exitf("running %s failed: %v\n%s\n%s", argv[0], err, cmd, out)
    	}
    
    	// Filter out useless linker warnings caused by bugs outside Go.
    	// See also cmd/go/internal/work/exec.go's gccld method.
    	var save [][]byte
    	var skipLines int
    	for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top