Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 689 for effort (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

        // There are cases where no rewrites happen even if a pattern matches,
        // causing this to result in a convergence failure. Consider this as a
        // best-effort.
        module_op.emitWarning("Failed to converge pattern at QuantizePass.");
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
       * the {@code shutdownNow} method. First, "best-effort" with regards to canceling running tasks is
       * implemented as "no-effort". No interrupts or other attempts are made to stop threads executing
       * tasks. Second, the returned list will always be empty, as any submitted task is considered to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. src/net/dnsconfig_unix.go

    	}
    	if len(conf.search) == 0 {
    		conf.search = dnsDefaultSearch()
    	}
    	return conf
    }
    
    func dnsDefaultSearch() []string {
    	hn, err := getHostname()
    	if err != nil {
    		// best effort
    		return nil
    	}
    	if i := bytealg.IndexByteString(hn, '.'); i >= 0 && i < len(hn)-1 {
    		return []string{ensureRooted(hn[i+1:])}
    	}
    	return nil
    }
    
    func ensureRooted(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * <p>The implementation deviates from the {@code ExecutorService} specification with regards to
       * the {@code shutdownNow} method. First, "best-effort" with regards to canceling running tasks is
       * implemented as "no-effort". No interrupts or other attempts are made to stop threads executing
       * tasks. Second, the returned list will always be empty, as any submitted task is considered to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/events/v1/types.go

    // with a given Reason reflecting a consistent underlying trigger, or the
    // continued existence of events with that Reason.  Events should be
    // treated as informative, best-effort, supplemental data.
    type Event struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/bug/bug.go

    	} else {
    		if cfg.BuildV {
    			fmt.Printf("failed to run gdb --version: %v\n", err)
    		}
    	}
    }
    
    // printCmdOut prints the output of running the given command.
    // It ignores failures; 'go bug' is best effort.
    func printCmdOut(w io.Writer, prefix, path string, args ...string) {
    	cmd := exec.Command(path, args...)
    	out, err := cmd.Output()
    	if err != nil {
    		if cfg.BuildV {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    	tmpPrefix := filepath.Base(dir) + ".tmp-"
    	if old, err := filepath.Glob(filepath.Join(str.QuoteGlob(parentDir), str.QuoteGlob(tmpPrefix)+"*")); err == nil {
    		for _, path := range old {
    			RemoveAll(path) // best effort
    		}
    	}
    	if dirExists {
    		if err := RemoveAll(dir); err != nil {
    			return "", err
    		}
    	}
    
    	partialPath, err := CachePath(ctx, mod, "partial")
    	if err != nil {
    		return "", err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                            || dependency.getVersion() == null
                            || dependency.getVersion().isEmpty()) {
                        // guard against case where best-effort resolution for invalid models is requested
                        continue;
                    }
                    collect.addDependency(RepositoryUtils.toDependency(dependency, stereotypes));
                }
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    	pod1 := newPod("best-effort-high", defaultPriority, []v1.Container{
    		newContainer("best-effort-high", newResourceList("", "", ""), newResourceList("", "", "")),
    	}, []v1.Volume{
    		newVolume("local-volume", v1.VolumeSource{
    			EmptyDir: &v1.EmptyDirVolumeSource{},
    		}),
    	})
    	pod2 := newPod("best-effort-low", defaultPriority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. plugin/pkg/admission/resourcequota/admission_test.go

    			t.Errorf("Usage Used: Key: %v, Expected: %v, Actual: %v", k, expectedValue, actualValue)
    		}
    	}
    }
    
    // TestAdmitBelowBestEffortQuotaLimit creates a best effort and non-best effort quota.
    // It verifies that best effort pods are properly scoped to the best effort quota document.
    func TestAdmitBelowBestEffortQuotaLimit(t *testing.T) {
    	resourceQuotaBestEffort := &corev1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top