Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for meaningful (0.23 sec)

  1. src/runtime/runtime.go

    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    // to make a meaningful difference in even a 1ms duration. If an accurate timestamp is needed,
    // use nanotime instead. (The entire Windows platform is a broad exception to this rule, where nanotime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    // limitations under the License.
    
    [[organizing_gradle_projects]]
    = Organizing Gradle Projects
    
    Source code and build logic of every software project should be organized in a meaningful way.
    This page lays out the best practices that lead to readable, maintainable projects.
    The following sections also touch on common problems and how to avoid them.
    
    [[sec:separate_language_source_files]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/covdata/metamerge.go

    	// Open output file. The file naming scheme is intended to mimic
    	// that used when running a coverage-instrumented binary, for
    	// consistency (however the process ID is not meaningful here, so
    	// use a value of zero).
    	var dummyPID int
    	fn := fmt.Sprintf(coverage.CounterFileTempl, coverage.CounterFilePref, metaHash, dummyPID, time.Now().UnixNano())
    	fpath := filepath.Join(outdir, fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

            @Override
            public int getModifiers() {
                if (original != null) {
                    return original.getModifiers();
                }
                // TODO is there even a way to return meaningful modifiers when we are intercepting calls to a missing method?
                return 0;
            }
    
            @Override
            public String getName() {
                if (original != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	setTcPod(tc.changedPod, name, namespace, uid, "1", examplev1.SchemeGroupVersion.String(), &thirty, "")
    
    	// Someone else already changed it to 30.
    	// This should be fine since it's not a "meaningful conflict".
    	// Previously this was detected as a meaningful conflict because int64(30) != float64(30).
    	setTcPod(tc.updatePod, name, namespace, uid, "2", examplev1.SchemeGroupVersion.String(), &thirty, "anywhere")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought
     * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
     * <i>type</i> offering meaningful behavioral guarantees. This is substantially different from the
     * case of (say) {@link HashSet}, which is an <i>implementation</i>, with semantics that were
     * largely defined by its supertype.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    //
    //go:linkname compileCallback syscall.compileCallback
    func compileCallback(fn eface, cdecl bool) (code uintptr) {
    	if GOARCH != "386" {
    		// cdecl is only meaningful on 386.
    		cdecl = false
    	}
    
    	if fn._type == nil || (fn._type.Kind_&abi.KindMask) != abi.Func {
    		panic("compileCallback: expected function with one uintptr-sized result")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought
     * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
     * <i>type</i> offering meaningful behavioral guarantees. This is substantially different from the
     * case of (say) {@link HashSet}, which is an <i>implementation</i>, with semantics that were
     * largely defined by its supertype.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_getters.go

    // container runtime cache. This function converts kubecontainer.Pod to
    // v1.Pod, so only the fields that exist in both kubecontainer.Pod and
    // v1.Pod are considered meaningful.
    func (kl *Kubelet) GetRunningPods(ctx context.Context) ([]*v1.Pod, error) {
    	pods, err := kl.runtimeCache.GetPods(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	apiPods := make([]*v1.Pod, 0, len(pods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/html/template/template.go

    	}
    	return parseFiles(t, readFileOS, filenames...)
    }
    
    // IsTrue reports whether the value is 'true', in the sense of not the zero of its type,
    // and whether the value has a meaningful truth value. This is the definition of
    // truth used by if and other such actions.
    func IsTrue(val any) (truth, ok bool) {
    	return template.IsTrue(val)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top