Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 577 for completely (0.3 sec)

  1. src/image/gif/writer.go

    		}
    		opts.Drawer.Draw(pm, b, m, b.Min)
    	}
    
    	// When calling Encode instead of EncodeAll, the single-frame image is
    	// translated such that its top-left corner is (0, 0), so that the single
    	// frame completely fills the overall GIF's bounds.
    	if pm.Rect.Min != (image.Point{}) {
    		dup := *pm
    		dup.Rect = dup.Rect.Sub(dup.Rect.Min)
    		pm = &dup
    	}
    
    	return EncodeAll(w, &GIF{
    		Image: []*image.Paletted{pm},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    To develop a convention plugin, we recommend using <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc,`buildSrc`>> – which represents a completely separate Gradle build.
    `buildSrc` has its own settings file to define where dependencies of this build are located.
    
    We add a Kotlin script called `my-java-library.gradle.kts` inside the `buildSrc/src/main/kotlin` directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/BigIntegerMath.java

        /*
         * We adjust approxLog10 and approxPow until they're equal to floor(log10(x)) and
         * 10^floor(log10(x)).
         */
    
        if (approxCmp > 0) {
          /*
           * The code is written so that even completely incorrect approximations will still yield the
           * correct answer eventually, but in practice this branch should almost never be entered, and
           * even then the loop should not run more than once.
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    * add the flag `-Dorg.gradle.daemon=false` to the `GRADLE_OPTS` environment variable
    
    Don't forget to make sure your JVM arguments and `GRADLE_OPTS` / `JAVA_OPTS` match if you want to completely disable the Daemon and not simply invoke a single-use one.
    
    [[sec:stopping_an_existing_daemon]]
    == Stop Daemon
    
    It can be helpful to stop the Daemon when troubleshooting or debugging a failure.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/BigIntegerMath.java

        /*
         * We adjust approxLog10 and approxPow until they're equal to floor(log10(x)) and
         * 10^floor(log10(x)).
         */
    
        if (approxCmp > 0) {
          /*
           * The code is written so that even completely incorrect approximations will still yield the
           * correct answer eventually, but in practice this branch should almost never be entered, and
           * even then the loop should not run more than once.
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/runtime/mranges.go

    	// would take ~160µs assuming a conservative copying rate of 25 GiB/s (the
    	// copy will almost never trigger a page fault) for a 1 TiB heap with 4 MiB
    	// arenas which is completely discontiguous. ~160µs is still a lot, but in
    	// practice most platforms have 64 MiB arenas (which cuts this by a factor
    	// of 16) and Go heaps are usually mostly contiguous, so the chance that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/file/store.go

    	// this legacy code only supports proto.Messages.
    	// Note: while NewInstance can be slightly modified to not return error here, the rest of the code
    	// still requires a proto.Message so it won't work without completely refactoring galley/
    	_, e := schema.NewInstance()
    	cannotHandleProto := e != nil
    	if cannotHandleProto {
    		return resources, &unknownSchemaError{
    			group:   groupVersionKind.Group,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/reconciler.go

    	// copy of the last generated manifests.
    	manifests name.ManifestMap
    	// dependencyWaitCh is a map of signaling channels. A parent with children ch1...chN will signal
    	// dependencyWaitCh[ch1]...dependencyWaitCh[chN] when it's completely installed.
    	dependencyWaitCh map[name.ComponentName]chan struct{}
    
    	// The fields below are for metrics and reporting
    	countLock     *sync.Mutex
    	prunedKindSet map[schema.GroupKind]struct{}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	// to its matching PVC.
    	// 2. Trigger the volume provisioning by making the API call to set related
    	// annotations on the PVC
    	// 3. Wait for PVCs to be completely bound by the PV controller
    	//
    	// This function can be called in parallel.
    	BindPodVolumes(ctx context.Context, assumedPod *v1.Pod, podVolumes *PodVolumes) error
    }
    
    type PodVolumeClaims struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/discovery.go

    	// Normal istio clients use the default generator - will not be impacted by this.
    	Generators map[string]model.XdsResourceGenerator
    
    	// ProxyNeedsPush is a function that determines whether a push can be completely skipped. Individual generators
    	// may also choose to not send any updates.
    	ProxyNeedsPush func(proxy *model.Proxy, req *model.PushRequest) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top