Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,247 for whatev (0.12 sec)

  1. src/cmd/compile/internal/ssa/html.go

        ];
    
        // Iterate over the svgParts specifically looking for white and black fill/stroke to be toggled.
        // The verbose conditional is intentional here so that we do not mutate any svg path, ellipse, or polygon that is of any color other than white or black.
        svgParts.forEach(el => {
            if (el.attributes.stroke.value === 'white') {
                el.attributes.stroke.value = 'black';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        predicate condition, and returns two values matching the type of the data
        predicate.
      }];
    
      let description = [{
        More details can be found in Tensorflow Control Flow white paper:
        https://storage.googleapis.com/download.tensorflow.org/paper/white_paper_tf_control_flow_implementation_2017_11_1.pdf
    
        This is defined in TensorFlow as:
    
        REGISTER_OP("Switch")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

         * that the output is generated in a stable order rather than in an order based on the order that implementations
         * are discovered.
         */
        String getId();
    
        /**
         * Notifies the build user of whatever problems have been collected. May report problems to the console, or generate a report
         * or fail with one or more exceptions, or all of the above.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependentNodesSet.java

        }
    
        DependentNodesSet addMustPredecessor(Node fromNode);
    
        /**
         * Visits all nodes in this set.
         * Should visit the nodes in a deterministic order, but the order can be whatever best makes sense for the node implementation.
         */
        void visitAllNodes(Consumer<Node> visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:11:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

            }
        }
    
        /**
         * Read back an object from the provided stream that has been serialized by a call to {@link #send(Object, java.io.OutputStream)}. Any {@link Throwable} that cannot be de-serialized (for whatever
         * reason) will be replaced by a {@link PlaceholderException}.
         *
         * @param inputSteam stream to read the object from
         * @param classLoader loader used to load exception classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/request.go

    )
    
    var (
    	debugRequestPort int32 = 15000
    	allowedPorts           = sets.New[int32](
    		15000,
    		15021,
    		15020,
    		15004,
    	)
    )
    
    // NB: extra standard output in addition to what's returned from envoy
    // must not be added in this command. Otherwise, it'd break istioctl proxy-config,
    // which interprets the output literally as json document.
    var (
    	requestCmd = &cobra.Command{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:05 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object.go

    type color uint32
    
    // An object may be painted in one of three colors.
    // Color values other than white or black are considered grey.
    const (
    	white color = iota
    	black
    	grey // must be > white and black
    )
    
    func (c color) String() string {
    	switch c {
    	case white:
    		return "white"
    	case black:
    		return "black"
    	default:
    		return "grey"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/gc.go

    	// Clear the condemned memory.
    	runtime.GC()
    
    	// At this point, the background scavenger is likely running
    	// and could pick up the work, so the next line of code doesn't
    	// end up doing anything. That's fine. What's important is that
    	// this test fails somewhat regularly if the runtime doesn't
    	// scavenge on heap growth, and doesn't fail at all otherwise.
    
    	// Make a large allocation that in theory could fit, but won't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/interface.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/client-go/tools/cache"
    )
    
    type Controller[T runtime.Object] interface {
    	// Meant to be run inside a goroutine
    	// Waits for and reacts to changes in whatever type the controller
    	// is concerned with.
    	//
    	// Returns an error always non-nil explaining why the worker stopped
    	Run(ctx context.Context) error
    
    	// Retrieves the informer used to back this controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top