Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,533 for happen (0.18 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

        // for a first level dependency? However it may be that you implicitly get a
        // substitution rule (via a plugin for example) that you are not aware of.
        // Ideally we should warn when such things happen (linting).
        def "substituted dependencies are also substituted in the generated POM file"() {
            javaLibrary(mavenRepo.module("org", "foo", "1.0")).withModuleMetadata().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. cmd/metrics-v3-types.go

    		labels := make([]string, 0, len(metric.VariableLabels)*2)
    		for k, v := range metric.VariableLabels {
    			if newLabel, ok := renameLabels[k]; ok {
    				labels = append(labels, newLabel, v)
    			} else {
    				labels = append(labels, k, v)
    			}
    		}
    		labels = append(labels, extraLabels...)
    		// If valid non zero value set the metrics
    		if metric.Value > 0 {
    			m.Set(name, metric.Value, labels...)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/time/example_test.go

    	t, err := time.Parse(time.UnixDate, "Wed Feb 25 11:06:39 PST 2015")
    	if err != nil { // Always check errors even if they should not happen.
    		panic(err)
    	}
    
    	tz, err := time.LoadLocation("Asia/Shanghai")
    	if err != nil { // Always check errors even if they should not happen.
    		panic(err)
    	}
    
    	// time.Time's Stringer method is useful without any format.
    	fmt.Println("default format:", t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. src/time/tick_test.go

    		// for Reset of timer NOT in heap.
    		tim.Stop()
    		drainAsync()
    		tim.Reset(1)
    		assertLen()
    		assertTick()
    	}
    
    	// Sleep long enough that a second tick must happen if this is a ticker.
    	// Test that Reset does not lose the tick that should have happened.
    	Sleep(sched)
    	tim.Reset(10000 * Second)
    	drainAsync()
    	noTick()
    
    	notDone := func(done chan bool) {
    		t.Helper()
    		select {
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/MoreFiles.java

        // exists and is a symlink to a directory... we'd like for this to succeed in that case.
        // (I'm kind of surprised that createDirectories would fail in that case; doesn't seem like
        // what you'd want to happen.)
        if (!Files.isDirectory(parent)) {
          Files.createDirectories(parent, attrs);
          if (!Files.isDirectory(parent)) {
            throw new IOException("Unable to create parent directories of " + path);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp.go

    						t.defUse[arg] = make([]*Value, 0, arg.Uses)
    					}
    					t.defUse[arg] = append(t.defUse[arg], val)
    				}
    			}
    		}
    		for _, ctl := range block.ControlValues() {
    			// for control values that can become constants, find their use blocks
    			if possibleConst(ctl) {
    				t.defBlock[ctl] = append(t.defBlock[ctl], block)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Suppliers.java

       * cached value, which will be recalculated when {@code get()} is called on the reserialized
       * instance. The actual memoization does not happen when the underlying delegate throws an
       * exception.
       *
       * <p>When the underlying delegate throws an exception then this memoizing supplier will keep
       * delegating calls until it returns valid data.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/runtime/signal_unix.go

    // This can only happen if non-Go code calls sigaltstack to disable the
    // signal stack.
    func noSignalStack(sig uint32) {
    	println("signal", sig, "received on thread with no signal stack")
    	throw("non-Go code disabled sigaltstack")
    }
    
    // This is called if we receive a signal when there is a signal stack
    // but we are not on it. This can only happen if non-Go code called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    This can happen if the code generator includes e.g. a timestamp in the generated files or depends on the order of the input files.
    Other pitfalls can be the use of ``HashMap``s or other data structures without order guarantees in the task's code.
    
    [WARNING]
    ====
    Some third party plugins can even influence cacheability of Gradle's built-in tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/search/search.go

    			continue
    		}
    
    		// If the root itself is a symlink to a directory,
    		// we want to follow it (see https://go.dev/issue/50807).
    		// Add a trailing separator to force that to happen.
    		src = str.WithFilePathSeparator(filepath.Clean(src))
    		root := src
    		if m.pattern == "cmd" {
    			root += "cmd" + string(filepath.Separator)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top