Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 820 for effort (0.35 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultGradleConnector.java

         *
         * <p>May attempt to expire some or all daemons started by this tooling API client. The exact behaviour here is implementation-specific and not guaranteed.
         * The expiration is best effort only. This method may return before the daemons have stopped.</p>
         *
         * <p>Note: this is not yet part of the public tooling API yet.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

         * <code>groupId:artifactId:version</code> the returned identifier need not be complete. The identifier is derived
         * from the information that is available at the point the problem occurs and as such merely serves as a best effort
         * to provide information to the user to track the problem back to its origin.
         *
         * @return The identifier of the model from which the problem originated or an empty string if unknown, never
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pkg/hbone/util.go

    	//}
    	// Similarly, if the writer has a ReadFrom method, use it to do the copy.
    	//if rt, ok := dst.(io.ReaderFrom); ok {
    	//	return rt.ReadFrom(src)
    	//}
    	for {
    		if srcc, ok := src.(net.Conn); ok {
    			// Best effort
    			_ = srcc.SetReadDeadline(time.Now().Add(15 * time.Minute))
    		}
    		nr, err := src.Read(buf)
    		log.Debugf("read %v/%v", nr, err)
    		if nr > 0 { // before dealing with the read error
    			nw, ew := dst.Write(buf[0:nr])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/dist/testjson.go

    		f.lineBuf.Reset()
    	}
    }
    
    func (f *testJSONFilter) process(line []byte) {
    	if len(line) > 0 && line[0] == '{' {
    		// Plausible test2json output. Parse it generically.
    		//
    		// We go to some effort here to preserve key order while doing this
    		// generically. This will stay robust to changes in the test2json
    		// struct, or other additions outside of it. If humans are ever looking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"metadata":                 "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: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/index.md

    There are many ways to handle security, authentication and authorization.
    
    And it normally is a complex and "difficult" topic.
    
    In many frameworks and systems just handling security and authentication takes a big amount of effort and code (in many cases it can be 50% or more of all the code written).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                .withSetUp(parentBuilder.getSetUp())
                .withTearDown(parentBuilder.getTearDown())
                .createTestSuite());
        /*
         * TODO(cpovirk): the Map tests duplicate most of this effort by using a
         * CollectionTestSuiteBuilder on values(). It would be nice to avoid that
         */
        derived.add(
            SetTestSuiteBuilder.using(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    stderr '^module example\.net/cmd provides package example\.net/cmd/tool and is replaced but not required; to add it:\n\tgo get example\.net/cmd@v0\.1\.0$'
    go mod edit -droprequire example.net/tools
    
    
    # 'go get' makes a best effort to fetch those dependencies, but shouldn't
    # error out if dependencies of tag-guarded files are missing.
    
    go get example.net/tools@v0.1.0
    ! stderr 'no Go source files'
    
    ! go list example.net/tools
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/mem_linux.go

    		throw("unaligned sysHugePageCollapseOS")
    	}
    	if physHugePageSize == 0 {
    		return
    	}
    	// N.B. If you find yourself debugging this code, note that
    	// this call can fail with EAGAIN because it's best-effort.
    	// Also, when it returns an error, it's only for the last
    	// huge page in the region requested.
    	//
    	// It can also sometimes return EINVAL if the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top