Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,049 for effort (0.15 sec)

  1. src/cmd/go/internal/modfetch/codehost/svn.go

    	}
    
    	exportDir := filepath.Join(workDir, "export")
    	// Remove any existing contents from a previous (failed) run.
    	if err := os.RemoveAll(exportDir); err != nil {
    		return err
    	}
    	defer os.RemoveAll(exportDir) // best-effort
    
    	release, err = base.AcquireNet()
    	if err != nil {
    		return err
    	}
    	_, err = Run(ctx, workDir, []string{
    		"svn", "export",
    		"--non-interactive",
    		"--quiet",
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/default.go

    	}
    	if err := os.MkdirAll(dir, 0777); err != nil {
    		base.Fatalf("failed to initialize build cache at %s: %s\n", dir, err)
    	}
    	if _, err := os.Stat(filepath.Join(dir, "README")); err != nil {
    		// Best effort.
    		os.WriteFile(filepath.Join(dir, "README"), []byte(cacheREADME), 0666)
    	}
    
    	diskCache, err := Open(dir)
    	if err != nil {
    		base.Fatalf("failed to initialize build cache at %s: %s\n", dir, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/util.go

    	serializer, ok := encoder.(runtime.Serializer)
    	if !ok {
    		// The stripVersionEncoder needs both an encoder and decoder, but is called from a context that doesn't have access to the
    		// decoder. We do a best effort cast here (since this code path is only for backwards compatibility) to get access to the caller's
    		// decoder.
    		panic(fmt.Sprintf("Unable to extract serializer from %#v", encoder))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppCustomHeaderDependencyIntegrationTest.groovy

                }
    
                // Simulates unzipping headers by copying the contents of a configured directory
                // This is to avoid pulling in an external dependency to do this or investing the
                // effort of writing our own unzip which would be pure yak-shaving for this test.
                import org.gradle.api.artifacts.transform.TransformParameters
    
                abstract class UnzipTransform implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/AbstractLoadingCache.java

    import java.util.Map;
    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    
    /**
     * This class provides a skeletal implementation of the {@code Cache} interface to minimize the
     * effort required to implement this interface.
     *
     * <p>To implement a cache, the programmer needs only to extend this class and provide an
     * implementation for the {@link #get(Object)} and {@link #getIfPresent} methods. {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/platform/Android10Platform.kt

        message: String,
        stackTrace: Any?,
      ) {
        if (Build.VERSION.SDK_INT >= 30) {
          (stackTrace as CloseGuard).warnIfOpen()
        } else {
          // Unable to report via CloseGuard. As a last-ditch effort, send it to the logger.
          super.logCloseableLeak(message, stackTrace)
        }
      }
    
      @SuppressLint("NewApi")
      override fun isCleartextTrafficPermitted(hostname: String): Boolean =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/kubelet/reason_cache.go

    )
    
    // ReasonCache stores the failure reason of the latest container start
    // in a string, keyed by <pod_UID>_<container_name>. The goal is to
    // propagate this reason to the container status. This endeavor is
    // "best-effort" for two reasons:
    //  1. The cache is not persisted.
    //  2. We use an LRU cache to avoid extra garbage collection work. This
    //     means that some entries may be recycled before a pod has been
    //     deleted.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/policy_options_test.go

    			topology:      topoDualSocketMultiNumaPerSocketHT,
    			topoMgrPolicy: topologymanager.PolicyNone,
    			expectedErr:   false,
    		},
    		{
    			description:   "Align by socket enabled: with topology manager best-effort policy",
    			policyOption:  map[string]string{AlignBySocketOption: "true"},
    			topology:      topoDualSocketMultiNumaPerSocketHT,
    			topoMgrPolicy: topologymanager.PolicyBestEffort,
    			expectedErr:   false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/inline/inlheur/function_properties.go

    // guide inlining heuristics; these properties may apply to the
    // function as a whole, or to one or more function return values or
    // parameters.
    //
    // IMPORTANT: function properties are produced on a "best effort"
    // basis, meaning that the code that computes them doesn't verify that
    // the properties are guaranteed to be true in 100% of cases. For this
    // reason, properties should only be used to drive always-safe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top