Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for onStop (0.14 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    	// allocate stack space, but this seems like an unlikely scenario.
    	// Hence: mark these wrappers NOSPLIT.
    	//
    	// ABIInternal-to-ABI0 wrappers on the other hand will be taking
    	// things in registers and pushing them onto the stack prior to
    	// the ABI0 call, meaning that they will always need to allocate
    	// stack space. If the compiler marks them as NOSPLIT this seems
    	// as though it could lead to situations where the linker's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/kubelet/config/config.go

    	}
    }
    
    // Merge normalizes a set of incoming changes from different sources into a map of all Pods
    // and ensures that redundant changes are filtered out, and then pushes zero or more minimal
    // updates onto the update channel.  Ensures that updates are delivered in order.
    func (s *podStorage) Merge(source string, change interface{}) error {
    	s.updateLock.Lock()
    	defer s.updateLock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            """
    
            then:
            fails("compileJava")
            failure.assertHasErrorOutput("package ${gradleBaseServicesClass.package.name} does not exist")
        }
    
        def "gradle classpath does not leak onto java compile classpath"() {
            given:
            file("src/main/java/Example.java") << """
                import org.gradle.api.Project;
                import org.gradle.api.Plugin;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. cluster/gce/windows/smoke-test.sh

          exit 1
        fi
      done
      echo "Verified that all Windows nodes have status Ready"
    }
    
    function untaint_windows_nodes {
      # Untaint the windows nodes to allow test workloads without tolerations to be
      # scheduled onto them.
      WINDOWS_NODES=$(${kubectl} get nodes -l kubernetes.io/os=windows -o name)
      for node in $WINDOWS_NODES; do
        ${kubectl} taint node "$node" node.kubernetes.io/os:NoSchedule-
      done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    var RequestWatchProgress Feature = "RequestWatchProgress"
    
    // Versioner abstracts setting and retrieving metadata fields from database response
    // onto the object ot list. It is required to maintain storage invariants - updating an
    // object twice with the same data except for the ResourceVersion and SelfLink must be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/range_allocator.go

    		// form namespace/name. We do this as the delayed nature of the
    		// workNodeQueue means the items in the informer cache may actually be
    		// more up to date that when the item was initially put onto the
    		// workNodeQueue.
    		if key, ok = obj.(string); !ok {
    			// As the item in the workNodeQueue is actually invalid, we call
    			// Forget here else we'd go into a loop of attempting to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    	// flushed, they end up on the full queue for trace.gen%2.
    	//
    	// The trace reader takes buffers off the full list one-by-one and
    	// places them into reading until they're finished being read from.
    	// Then they're placed onto the empty list.
    	//
    	// Protected by trace.lock.
    	reading       *traceBuf // buffer currently handed off to user
    	empty         *traceBuf // stack of empty buffers
    	full          [2]traceBufQueue
    	workAvailable atomic.Bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. src/syscall/js/js.go

    	} else {
    		// allocates on the heap, but exceeding maxStackArgs should be rare
    		argVals = make([]Value, size)
    		argRefs = make([]ref, size)
    	}
    	return
    }
    
    // storeArgs maps input args onto respective Value and ref slices.
    // It can be paired with makeArgSlices to make-and-store JavaScript arg slices.
    func storeArgs(args []any, argValsDst []Value, argRefsDst []ref) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook.go

    	currentJSON, err := json.Marshal(target)
    	if err != nil {
    		return nil, err
    	}
    
    	pod := corev1.Pod{}
    	// Overlay the injected template onto the original podSpec
    	patched, err := StrategicMergePatchYAML(currentJSON, overlayYAML, pod)
    	if err != nil {
    		return nil, fmt.Errorf("strategic merge: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      // TODO(kramm): Remove this once tf.Const's folder is aware of extra
      // attributes.
      auto value_str_attr = StringAttr::get(&getContext(), "value");
      getOperation().walk([&](mlir::TF::ConstOp cst) {
        auto dict = cst->getAttrDictionary();
        if (dict.size() == 1) {
          return;  // Optimization. Assume the one attribute is "value".
        }
        // Recreate the attributes dictionary to only contain "value".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
Back to top