Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for seremos (0.71 sec)

  1. src/cmd/go/internal/test/test.go

    		// dump from a timed-out test process scales roughly with the overall
    		// running time of the test.
    		//
    		// This is probably too generous when the timeout is very long, but it seems
    		// better to hard-code a scale factor than to hard-code a constant delay.
    		if wd := testTimeout / 10; wd < 5*time.Second {
    			testWaitDelay = 5 * time.Second
    		} else {
    			testWaitDelay = wd
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            var firstArgIsExtensionReceiver = false
            var isImplicitInvoke = false
    
            // TODO: Ideally, we should get the substitutor from the candidate. But it seems there is no way to get the substitutor from the
            //  candidate, `Candidate.substitutor` is not complete. maybe we can carry over the final substitutor if it's available from
            //  body resolve phase?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    }
    
    // ImportFromFiles adds modules to the build list as needed
    // to satisfy the imports in the named Go source files.
    //
    // Errors in missing dependencies are silenced.
    //
    // TODO(bcmills): Silencing errors seems off. Take a closer look at this and
    // figure out what the error-reporting actually ought to be.
    func ImportFromFiles(ctx context.Context, gofiles []string) {
    	rs := LoadModFile(ctx)
    
    	tags := imports.Tags()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       */
      @GwtIncompatible // java.time.Duration
      @SuppressWarnings("GoodTime") // duration decomposition
      private static long toNanosSaturated(java.time.Duration duration) {
        // Using a try/catch seems lazy, but the catch block will rarely get invoked (except for
        // durations longer than approximately +/- 292 years).
        try {
          return duration.toNanos();
        } catch (ArithmeticException tooBig) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    			if goos == "aix" || goos == "linux" {
    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    		case "dragonfly":
    			// It seems that on Dragonfly thread local storage is
    			// set up by the dynamic linker, so internal cgo linking
    			// doesn't work. Test case is "go test runtime/cgo".
    			return true
    		}
    	}
    
    	switch goos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

                    fileSize = response.getDataSize();
    
                    // this is so damn unreliable, needs another race-prone query if required
                    haveAttributes = false;
    
                    // This seems to be the only way to obtain a reliable (with respect to locking) file size here
                    // It is more critical than other attributes because append mode depends on it.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    			// go.mod files for these transitive-test-only dependencies. (See the test
    			// in mod_lazy_test_horizon.txt for a concrete example).
    			//
    			// The “goldilocks zone” seems to be to spot-check exactly the same
    			// modules that we promote to explicit roots: namely, those that provide
    			// packages transitively imported by the main module, and those that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Note: when inserting Select1 ops we need to ensure they are in the
    // same block as their argument. We could also use @x.Block for this
    // but moving the flag generating value to a different block seems to
    // increase the likelihood that the flags value will have to be regenerated
    // by flagalloc which is not what we want.
    (LTDBR (Select0 x:(F(ADD|SUB) _ _)))   && b == x.Block => (Select1 x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			sb.WriteString(gofmt(rtype))
    			result = true
    		}
    
    		// Add the second result type, if any.
    		if twoResults {
    			if name.FuncType.Result == nil {
    				// An explicit void result looks odd but it
    				// seems to be how cgo has worked historically.
    				sb.WriteString("_Ctype_void")
    			}
    			sb.WriteString(", error)")
    		}
    	}
    
    	sb.WriteString("{ ")
    
    	// Define _cgoN for each argument value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top