Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for Reports (0.22 sec)

  1. src/cmd/go/internal/modload/load.go

    	// If we didn't scan all of the imports from the main module, or didn't use
    	// imports.AnyTags, then we didn't necessarily load every package that
    	// contributes “direct” imports — so we can't safely mark existing direct
    	// dependencies in ld.requirements as indirect-only. Propagate them as direct.
    	loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
    	if loadedDirect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/time/time.go

    	if t.wall&hasMonotonic == 0 {
    		return 0
    	}
    	return t.ext
    }
    
    // After reports whether the time instant t is after u.
    func (t Time) After(u Time) bool {
    	if t.wall&u.wall&hasMonotonic != 0 {
    		return t.ext > u.ext
    	}
    	ts := t.sec()
    	us := u.sec()
    	return ts > us || ts == us && t.nsec() > u.nsec()
    }
    
    // Before reports whether the time instant t is before u.
    func (t Time) Before(u Time) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    func (check *Checker) matchTypes(x, y *operand) {
    	// mayConvert reports whether the operands x and y may
    	// possibly have matching types after converting one
    	// untyped operand to the type of the other.
    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/net/http/request.go

    }
    
    // outgoingLength reports the Content-Length of this outgoing (Client) request.
    // It maps 0 into -1 (unknown) when the Body is non-nil.
    func (r *Request) outgoingLength() int64 {
    	if r.Body == nil || r.Body == NoBody {
    		return 0
    	}
    	if r.ContentLength != 0 {
    		return r.ContentLength
    	}
    	return -1
    }
    
    // requestMethodUsuallyLacksBody reports whether the given request
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	return goos == "ios"
    }
    
    func (t *tester) out(v string) {
    	if t.json {
    		return
    	}
    	if t.banner == "" {
    		return
    	}
    	fmt.Println("\n" + t.banner + v)
    }
    
    // extLink reports whether the current goos/goarch supports
    // external linking. This should match the test in determineLinkMode
    // in cmd/link/internal/ld/config.go.
    func (t *tester) extLink() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            when:
            configurationCacheRun()
    
            then:
            fixture.assertStateLoaded()
            result.assertTasksExecuted(":help")
            assertTransformed()
        }
    
        def "reports failure to transform prebuilt file dependency"() {
            createDirs("a")
            settingsFile << """
                include 'a'
            """
            setupBuildWithColorTransform()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    			if imp == "C" {
    				fatalf("%s imports C", p)
    			}
    			importMap[imp] = resolveVendor(imp, dir)
    		}
    	}
    	sortedImports := make([]string, 0, len(importMap))
    	for imp := range importMap {
    		sortedImports = append(sortedImports, imp)
    	}
    	sort.Strings(sortedImports)
    
    	for _, dep := range importMap {
    		if dep == "C" {
    			fatalf("%s imports C", pkg)
    		}
    		startInstall(dep)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	}
    	return tr.extra
    }
    
    func (tr *transportRequest) setError(err error) {
    	tr.mu.Lock()
    	if tr.err == nil {
    		tr.err = err
    	}
    	tr.mu.Unlock()
    }
    
    // useRegisteredProtocol reports whether an alternate protocol (as registered
    // with Transport.RegisterProtocol) should be respected for this request.
    func (t *Transport) useRegisteredProtocol(req *Request) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    func (check *Checker) matchTypes(x, y *operand) {
    	// mayConvert reports whether the operands x and y may
    	// possibly have matching types after converting one
    	// untyped operand to the type of the other.
    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    	return MakePos(p.base, line, col)
    }
    
    // errorAt reports an error at the given position.
    func (p *parser) errorAt(pos Pos, msg string) {
    	err := Error{pos, msg}
    	if p.first == nil {
    		p.first = err
    	}
    	p.errcnt++
    	if p.errh == nil {
    		panic(p.first)
    	}
    	p.errh(err)
    }
    
    // syntaxErrorAt reports a syntax error at the given position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top