Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 507 for effort (0.38 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                    if (Collection.class.isAssignableFrom(returnType)) {
                        return method;
                    }
                }
            }
            return null;
        }
    
        /**
         * Does best effort to find a method which potentially returns multiple causes
         * for an exception. This is for classes of external projects which actually do
         * something similar to what we do in Gradle with {@link DefaultMultiCauseException}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/shape_inference.cc

      for (Node* n : order) {
        VLOG(4) << "Propagating shape for node " << n->name()
                << ", type: " << n->type_string();
        // Ignore the status returned by the shape_refiner. We want the best effort
        // shapes, even if no shape function is registered for a node.
        Status status = shape_refiner->AddNode(n);
        if (!status.ok()) {
          VLOG(1) << "Shape inference failed for node " << n->name() << ": "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/runtime/error.go

    func (e errorAddressString) RuntimeError() {}
    
    func (e errorAddressString) Error() string {
    	return "runtime error: " + e.msg
    }
    
    // Addr returns the memory address where a fault occurred.
    // The address provided is best-effort.
    // The veracity of the result may depend on the platform.
    // Errors providing this method will only be returned as
    // a result of using [runtime/debug.SetPanicOnFault].
    func (e errorAddressString) Addr() uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pilot/pkg/credentials/kube/secrets.go

    	// This makes the assumption we will never care about Helm secrets or SA token secrets - two common
    	// large secrets in clusters.
    	// This is a best effort optimization only; the code would behave correctly if we watched all secrets.
    	fieldSelector := fields.AndSelectors(
    		fields.OneTermNotEqualSelector("type", "helm.sh/release.v1"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// a leading "." matches subdomains only. For example "foo.com" matches
    	// "foo.com" and "bar.foo.com"; ".y.com" matches "x.y.com" but not "y.com".
    	// A single asterisk (*) indicates that no proxying should be done.
    	// A best effort is made to parse the string and errors are
    	// ignored.
    	NoProxy string
    
    	// CGI holds whether the current process is running
    	// as a CGI handler (FromEnvironment infers this from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pkg/log/config.go

    				funcs.Load().(patchTable).exitProcess(1)
    			}
    
    			return err
    		},
    		sync:        baseLogger.Sync,
    		exitProcess: os.Exit,
    		errorSink:   errSink,
    		close: func() error {
    			// best-effort to sync
    			baseLogger.Sync() // nolint: errcheck
    			for _, f := range closeFns {
    				if err := f(); err != nil {
    					return err
    				}
    			}
    			return nil
    		},
    	}
    	funcs.Store(pt)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    			executed = true
    			return f()
    		}()
    	}()
    	err := <-chErr
    	if err != nil && !executed {
    		// We failed to setup the environment. Now we go into best effort mode.
    		// Users running into this may have IPTables lock used unexpectedly or make unexpected NSS calls.
    		// This is to support environments with restrictive access (from SELinux, but possibly others) that block these calls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/internal/trace/testtrace/validation.go

    		// generate a Log. The category and message are entirely user-created,
    		// so we can't make any assumptions as to what they are. We also
    		// can't validate the task, because proving the task's existence is very
    		// much best-effort.
    		_ = ev.Log()
    	}
    	return e.Errors()
    }
    
    func (v *Validator) hasRange(r trace.ResourceID, name string) bool {
    	ranges, ok := v.ranges[r]
    	return ok && slices.Contains(ranges, name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/runtime/debug/garbage.go

    // The runtime.Error that the runtime panics with may have an additional method:
    //
    //	Addr() uintptr
    //
    // If that method exists, it returns the memory address which triggered the fault.
    // The results of Addr are best-effort and the veracity of the result
    // may depend on the platform.
    // SetPanicOnFault applies only to the current goroutine.
    // It returns the previous setting.
    func SetPanicOnFault(enabled bool) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    				// build IDs of completed actions.
    				oldBuildID := a.buildID
    				a.buildID = id[1] + buildIDSeparator + id[2]
    				linkID := buildid.HashToString(b.linkActionID(a.triggers[0]))
    				if id[0] == linkID {
    					// Best effort attempt to display output from the compile and link steps.
    					// If it doesn't work, it doesn't work: reusing the cached binary is more
    					// important than reprinting diagnostic information.
    					if printOutput {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top