Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,499 for happen (0.61 sec)

  1. cmd/kubeadm/app/util/runtime/runtime_windows.go

    	winio "github.com/Microsoft/go-winio"
    )
    
    // isExistingSocket checks if path exists and is domain socket
    func isExistingSocket(path string) bool {
    	u, err := url.Parse(path)
    	if err != nil {
    		// should not happen, since we are trying to access known / hardcoded sockets
    		return false
    	}
    
    	// the dial path must be without "npipe://"
    	_, err = winio.DialPipe(u.Path, nil)
    	if err != nil {
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelViewClosedException.java

    import org.gradle.model.internal.type.ModelType;
    
    /**
     * Thrown when at attempt is made to mutate a subject of a rule after the rule has completed.
     * <p>
     * This can potentially happen when a reference to the subject is retained during a rule and then used afterwards,
     * Such as when an anonymous inner class or closure “closes over” the subject.
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Execution engine that takes a unit of work and makes it happen"
    
    dependencies {
        api(libs.guava)
        api(libs.jsr305)
        api(libs.slf4jApi)
    
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        compileOnly(libs.errorProneAnnotations)
        api(project(":base-services"))
        api(project(":build-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/kube/controllers/queue_test.go

    	assert.Equal(t, handles.Load(), 1)
    	q.Add(types.NamespacedName{Name: "something else"})
    	close(stop)
    	assert.NoError(t, q.WaitForClose(time.Second))
    	// event 2 is guaranteed to happen from WaitForClose
    	assert.Equal(t, handles.Load(), 2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 16:18:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. internal/s3select/sql/value_contrib.go

    	case opGt:
    		return left.After(right)
    	case opGte:
    		return left.After(right) || left.Equal(right)
    	case opEq:
    		return left.Equal(right)
    	case opIneq:
    		return !left.Equal(right)
    	}
    	// This case does not happen
    	return false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. src/internal/lazytemplate/lazytemplate.go

    // New creates a new lazy template, delaying the parsing work until it is first
    // needed. If the code is being run as part of tests, the template parsing will
    // happen immediately.
    func New(name, text string) *Template {
    	lt := &Template{name: name, text: text}
    	if inTest {
    		// In tests, always parse the templates early.
    		lt.tp()
    	}
    	return lt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/TaskGeneratedSingleFileReport.java

            super(name, OutputType.FILE, task);
            // This is for backwards compatibility for plugins that attach a convention mapping to the replaced property
            // TODO - this wiring should happen automatically (and be deprecated too)
            getOutputLocation().convention(getProjectLayout().file(new DefaultProvider<>(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/util/iptables/save_restore.go

    	for {
    		i := bytes.Index(save, []byte("\n:"))
    		if i == -1 {
    			break
    		}
    		start := i + 2
    		save = save[start:]
    		end := bytes.Index(save, []byte(" "))
    		if end == -1 {
    			// shouldn't happen, but...
    			break
    		}
    		chain := Chain(save[:end])
    		chainsSet.Insert(chain)
    		save = save[end:]
    	}
    	return chainsSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. internal/s3select/sql/value.go

    	}
    	// Fallback to string
    	v.setString(asString)
    	return
    }
    
    // When numeric types are compared, type promotions could happen. If
    // values do not have types (e.g. when reading from CSV), for
    // comparison operations, automatic type conversion happens by trying
    // to check if the value is a number (first an integer, then a float),
    // and falling back to string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  10. src/runtime/example_test.go

    func ExampleFrames() {
    	c := func() {
    		// Ask runtime.Callers for up to 10 PCs, including runtime.Callers itself.
    		pc := make([]uintptr, 10)
    		n := runtime.Callers(0, pc)
    		if n == 0 {
    			// No PCs available. This can happen if the first argument to
    			// runtime.Callers is large.
    			//
    			// Return now to avoid processing the zero Frame that would
    			// otherwise be returned by frames.Next below.
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 18 22:05:09 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top