Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 191 for dialing (0.15 sec)

  1. src/cmd/compile/internal/abt/avlint32_test.go

    // returned to allow comparison of calculated tree size
    // with expected.
    func (t *node32) wellFormedSubtree(parent *node32, keyMin, keyMax int32) (s string, i int) {
    	i = -1 // initialize to a failing value
    	s = "" // s is the reason for failure; empty means okay.
    
    	if keyMin >= t.key {
    		s = " min >= t.key"
    		return
    	}
    
    	if keyMax <= t.key {
    		s = " max <= t.key"
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    = Debugging and diagnosing cache misses
    
    To make the most of task output caching, it is important that any necessary inputs to your tasks are specified correctly, while at the same time avoiding unneeded inputs.
    Failing to specify an input that affects the task's outputs can result in incorrect builds, while needlessly specifying inputs that do not affect the task's output can cause cache misses.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package objabi
    
    type RelocType int16
    
    //go:generate stringer -type=RelocType
    const (
    	R_ADDR RelocType = 1 + iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

            configureAction.execute(reports);
            return reports;
        }
    
        private void handleTestFailures() {
            String message = "There were failing tests";
    
            DirectoryReport htmlReport = getReports().getHtml();
            if (htmlReport.getRequired().get()) {
                String reportUrl = new ConsoleRenderer().asClickableFileUrl(htmlReport.getEntryPoint());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. docs/bucket/replication/README.md

    est/dev/replication-add-config.html). Any objects uploaded to the source bucket that meet replication criteria will now be automatically replicated by the MinIO server to the remote destination bucket. Replication can be disabled at any time by disabling specific rules in the configuration or deleting the replication configuration entirely.
    
    When object locking is used in conjunction with replication, both source and destination buckets needs to have [object locking](https://min.io/doc...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *     exclude module: 'cglib' //by artifact name
     *     exclude group: 'org.jmock' //by group
     *     exclude group: 'org.unwanted', module: 'iAmBuggy' //by both name and group
     *
     *     //disabling all transitive dependencies of this dependency
     *     transitive = false
     *   }
     * }
     * </pre>
     *
     * More examples of advanced configuration, useful when dependency module has multiple artifacts:
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadmacho/ldmacho.go

    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.
    */
    
    // TODO(crawshaw): de-duplicate these symbols with cmd/link/internal/ld
    const (
    	MACHO_X86_64_RELOC_UNSIGNED = 0
    	MACHO_X86_64_RELOC_SIGNED   = 1
    	MACHO_ARM64_RELOC_ADDEND    = 10
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    }
    
    // CustomResourceDefinitionVersion describes a version for CRD.
    type CustomResourceDefinitionVersion struct {
    	// Name is the version name, e.g. “v1”, “v2beta1”, etc.
    	Name string
    	// Served is a flag enabling/disabling this version from being served via REST APIs
    	Served bool
    	// Storage flags the version as storage version. There must be exactly one flagged
    	// as storage version.
    	Storage bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. src/net/http/fs.go

    		var r httpRange
    		if start == "" {
    			// If no start is specified, end specifies the
    			// range start relative to the end of the file,
    			// and we are dealing with <suffix-length>
    			// which has to be a non-negative integer as per
    			// RFC 7233 Section 2.1 "Byte-Ranges".
    			if end == "" || end[0] == '-' {
    				return nil, errors.New("invalid range")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/ByteSource.java

            // methods on this class also have potential problems with infinite  Iterables. But unlike
            // those, this method can cause issues even if the user is dealing with a (finite) slice()
            // of this source, since the slice's sizeIfKnown() method needs to know the size of the
            // underlying source to know what its size actually is.
            return Optional.absent();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
Back to top