Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for forced (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    );
                }
    
                if (getResolutionStrategy().resolveGraphToDetermineTaskDependencies()) {
                    // Force graph resolution as this is required to calculate build dependencies
                    return getValue();
                } else {
                    return resolveGraphForBuildDependenciesIfRequired();
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    	for _, key := range nameKeys(p.Name) {
    		n := p.Name[key]
    		if !n.IsVar() {
    			continue
    		}
    
    		if !cVars[n.C] {
    			if *gccgo {
    				fmt.Fprintf(fc, "extern byte *%s;\n", n.C)
    			} else {
    				// Force a reference to all symbols so that
    				// the external linker will add DT_NEEDED
    				// entries as needed on ELF systems.
    				// Treat function variables differently
    				// to avoid type conflict errors from LTO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/time/format.go

    func isDigit[bytes []byte | string](s bytes, i int) bool {
    	if len(s) <= i {
    		return false
    	}
    	c := s[i]
    	return '0' <= c && c <= '9'
    }
    
    // getnum parses s[0:1] or s[0:2] (fixed forces s[0:2])
    // as a decimal integer and returns the integer and the
    // remainder of the string.
    func getnum(s string, fixed bool) (int, string, error) {
    	if !isDigit(s, 0) {
    		return 0, s, errBad
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    // Variables set by other packages.
    //
    // TODO(#40775): See if these can be plumbed as explicit parameters.
    var (
    	// RootMode determines whether a module root is needed.
    	RootMode Root
    
    	// ForceUseModules may be set to force modules to be enabled when
    	// GO111MODULE=auto or to report an error when GO111MODULE=off.
    	ForceUseModules bool
    
    	allowMissingModuleImports bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	}
    	err = Link(to, from)
    	if err != nil {
    		t.Fatalf("link %q, %q failed: %v", to, from, err)
    	}
    
    	none := "hardlinktestnone"
    	err = Link(none, none)
    	// Check the returned error is well-formed.
    	if lerr, ok := err.(*LinkError); !ok || lerr.Error() == "" {
    		t.Errorf("link %q, %q failed to return a valid error", none, none)
    	}
    
    	tostat, err := Stat(to)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		}
    	}
    }
    
    // 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
    // called. By writing results to a global variable, we hide that fact
    // from the compiler and force it to keep the code under test.
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    
    	// Depending on the implementation, different number of events that
    	// should be delivered to the watcher can be created before it will
    	// block the implementation and as a result force the watcher to be
    	// closed (as otherwise events would have to be dropped).
    	// For now, this number is smallest for Cacher and it equals 21 for it.
    	totalPods := 21
    	for i := 0; i < totalPods; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    	proxyHandler.Transport = RoundTripperFunc(func(req *http.Request) (*http.Response, error) {
    		if req.Body != nil {
    			t.Error("Body != nil; want a nil Body")
    		}
    		return nil, errors.New("done testing the interesting part; so force a 502 Gateway error")
    	})
    	frontend := httptest.NewServer(proxyHandler)
    	defer frontend.Close()
    
    	res, err := frontend.Client().Get(frontend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    		"\n10 @",
    		"\n9 @", labelStr,
    		"\n1 @"}
    	if !containsInOrder(prof, append(orderedPrefix, selfLabelStr)...) {
    		t.Errorf("expected sorted goroutine counts with Labels:\n%s", prof)
    	}
    	if !containsInOrder(prof, append(orderedPrefix, fingLabelStr)...) {
    		t.Errorf("expected sorted goroutine counts with Labels:\n%s", prof)
    	}
    
    	// Check proto profile
    	w.Reset()
    	goroutineProf.WriteTo(&w, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    			opts.claims[ldapAttribPrefix+attribKey] = attribValue
    		}
    
    		// NOTE: if not using LDAP, then internal IDP or open ID is
    		// being used - in the former, group info is enforced when
    		// generated credentials are used to make requests, and in the
    		// latter, a group notion is not supported.
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top