Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,893 for effort (0.25 sec)

  1. src/net/http/fcgi/child.go

    		if err != nil {
    			return err
    		}
    		c := newChild(rw, handler)
    		go c.serve()
    	}
    }
    
    // ProcessEnv returns FastCGI environment variables associated with the request r
    // for which no effort was made to be included in the request itself - the data
    // is hidden in the request's context. As an example, if REMOTE_USER is set for a
    // request, it will not be found anywhere in r, but it will be included in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    	}
    }
    
    // CachedDeepEqual is equivalent to reflect.DeepEqual, but caches the
    // results in the tree of ratchetInvocationScratch objects on the way:
    //
    // For objects and arrays, this function will make a best effort to make
    // use of past DeepEqual checks performed by this Node's children, if available.
    //
    // If a lazy computation could not be found for all children possibly due
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    To keep your builds maintainable, we recommend the following:
    
    1. *Keep default project names for subprojects*:
    It is possible to configure custom project names in the settings file.
    However, it’s an unnecessary extra effort for the developers to track which projects belong to what folders.
    
    2. *Use lower case hyphenation for all project names*:
    All letters are lowercase, and words are separated with a dash (`-`) character.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectCollection.java

                return;
            }
    
            // copy in case any actions mutate the store
            // linked list because the underlying store may preserve order
            // We make best effort not to create an intermediate collection if this container
            // is empty.
            Collection<T> copied = null;
            for (T t : this) {
                if (copied == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. 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)
Back to top