Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,978 for happen (0.15 sec)

  1. .github/ISSUE_TEMPLATE/01-pkgsite.yml

        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: "What did you expect to see?"
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/localize_var_handles.cc

        return;  // We're already directly after a VarHandleOp.
      }
    
      const TF::ResourceDataflowState* state =
          solver.lookupState<TF::ResourceDataflowState>(resource);
      if (!state) {
        // Can't actually happen. Even for gaps in the dataflow, we'll receive
        // the initial state.
        return;
      }
      auto ops = state->getValue().ops;
      if (ops.size() != 1) {
        return;
      }
      Operation* source = *ops.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    			} else {
    				fmt.Println("[reset] Would remove the etcd member on this node from the etcd cluster")
    				fmt.Printf("[reset] Would delete contents of the etcd data directory: %v\n", etcdDataDir)
    			}
    		}
    		// This could happen if the phase `cleanup-node` is run before the `remove-etcd-member`.
    		// Cleanup the data in the etcd data dir to avoid some stale files which might cause the failure to build cluster in the next time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ProjectParallelExecutionController.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface ProjectParallelExecutionController {
        /**
         * Indicate that project execution may happen.
         *
         * <p>Note: this must be called prior to any projects being created for a build tree.</p>
         */
        void startProjectExecution(boolean parallel);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/runtime/runtime_unix.go

    import (
    	"net"
    	"net/url"
    )
    
    // 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
    	}
    
    	c, err := net.Dial(u.Scheme, u.Path)
    	if err != nil {
    		return false
    	}
    	defer c.Close()
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1011 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top