Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,548 for necessarily (0.37 sec)

  1. src/cmd/go/testdata/script/build_overlay.txt

    stderr '(compile|gccgo)( |\.exe).*test_cache.go'  # not cached
    env CACHE=$OLD_GOCACHE
    
    # Run same tests but with gccgo.
    env GO111MODULE=off
    [!exec:gccgo] stop
    [cross] stop  # gccgo can't necessarily cross-compile
    
    ! go build -compiler=gccgo .
    go build -compiler=gccgo -overlay overlay.json -o main_gccgo$GOEXE .
    exec ./main_gccgo$goexe
    stdout '^hello$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  2. src/internal/poll/splice_linux.go

    // license that can be found in the LICENSE file.
    
    package poll
    
    import (
    	"internal/syscall/unix"
    	"runtime"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    const (
    	// spliceNonblock doesn't make the splice itself necessarily nonblocking
    	// (because the actual file descriptors that are spliced from/to may block
    	// unless they have the O_NONBLOCK flag set), but it makes the splice pipe
    	// operations nonblocking.
    	spliceNonblock = 0x2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/workcmd/use.go

    	keepDirs := make(map[string]string)
    
    	var sw toolchain.Switcher
    
    	// lookDir updates the entry in keepDirs for the directory dir,
    	// which is either absolute or relative to the current working directory
    	// (not necessarily the directory containing the workfile).
    	lookDir := func(dir string) {
    		absDir, dir := pathRel(workDir, dir)
    
    		file := base.ShortPath(filepath.Join(absDir, "go.mod"))
    		fi, err := fsys.Stat(file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            val semanticsFromSignature = inferFunctionSemanticsFromSignature(function, function.returnType, inType, preIndex, configureLambdas)
            val maybeConfigureTypeRef = when (semanticsFromSignature) { // there is not necessarily a lambda parameter of this type: it might be an adding function with no lambda
                is FunctionSemantics.ConfigureSemantics -> semanticsFromSignature.configuredType
                else -> null
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                        artifact(fileName: 'a_main.jar', version: '')
                        // Version is extracted from the file name byt classifier is extracted from the URL. This is checking current behaviour not necessarily desired behaviour
                        artifact(fileName: 'a_extra.jar', version: '', classifier: 'extra')
                        artifact(type: 'zip', version: '')
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

        public void artifactsAccessed(String displayName) {
            verifyConcurrently();
            synchronized (failuresLock) {
                if (hasFatalFailure) {
                    // There are fatal failures, but not necessarily on all artifacts so we first filter out
                    // the artifacts which only have not fatal errors
                    Map<ModuleComponentArtifactIdentifier, Collection<RepositoryAwareVerificationFailure>> filtered =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body.md

    A **request** body is data sent by the client to your API. A **response** body is the data your API sends to the client.
    
    Your API almost always has to send a **response** body. But clients don't necessarily need to send **request** bodies all the time.
    
    To declare a **request** body, you use <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> models with all their power and benefits.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/internal/filepathlite/path_windows.go

    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    		// Path starts with a drive letter.
    		//
    		// Not all Windows functions necessarily enforce the requirement that
    		// drive letters be in the set A-Z, and we don't try to here.
    		//
    		// We don't handle the case of a path starting with a non-ASCII character,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multiset.java

       * The order of the elements in the element set is unspecified.
       *
       * <p>If the element set supports any removal operations, these necessarily cause <b>all</b>
       * occurrences of the removed element(s) to be removed from the multiset. Implementations are not
       * expected to support the add operations, although this is possible.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. src/internal/trace/internal/testgen/go122/trace.go

    	})
    	for _, e := range b.events {
    		tw.WriteEvent(e)
    	}
    }
    
    // Seq represents a sequence counter.
    type Seq uint64
    
    // Time represents a low-level trace timestamp (which does not necessarily
    // correspond to nanoseconds, like trace.Time does).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top