Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for plats (0.04 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowProviders.java

         * <b>IMPORTANT:</b> trying to access the provider's value before the scheduled work has finished will
         * result in an error.
         * </p>
         *
         * <pre>
         * /**
         *  * A settings plugin that plays an appropriate sound at the end of a build.
         *  *{@literal /}
         * class SoundFeedbackPlugin implements Plugin&lt;Settings&gt; {
         *
         *     private final FlowScope flowScope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/covdata/covdata.go

    	dbgtrace(1, "starting mode-independent setup")
    	if flag.NArg() != 0 {
    		op.Usage("unknown extra arguments")
    	}
    	if *pkgpatflag != "" {
    		pats := strings.Split(*pkgpatflag, ",")
    		matchers := []func(name string) bool{}
    		for _, p := range pats {
    			if p == "" {
    				continue
    			}
    			f := pkgpattern.MatchSimplePattern(p)
    			matchers = append(matchers, f)
    		}
    		matchpkg = func(name string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

      Type etype = type.getElementType();
    
      // Evaluate for element types.
      if (!mlir::isa<ElementType>(etype)) {
        return {};
      }
    
      // Special case for folding splats no matter how large.
      // Only covers the case of both attrs being splats; operation-specific cases
      // like adding a zero or multiplying by one are handled elsewhere.
      SplatElementsAttr splatLhs = mlir::dyn_cast<SplatElementsAttr>(lhs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "street",
            "cattle",
            "sun",
            "wealth",
            "cabbage",
            "playground",
            "wren",
            "flowers",
            "cobweb",
            "shame",
            "plate",
            "authority",
            "cave",
            "floor",
            "shelf",
            "snakes",
            "ants",
            "comparison",
            "quicksand",
            "eyes",
            "thumb",
            "church",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/net/http/routing_tree_test.go

    	if testTree == nil {
    		testTree = buildTree("/a", "/a/b", "/a/{x}",
    			"/g/h/i", "/g/{x}/j",
    			"/a/b/{x...}", "/a/b/{y}", "/a/b/{$}")
    	}
    	return testTree
    }
    
    func buildTree(pats ...string) *routingNode {
    	root := &routingNode{}
    	for _, p := range pats {
    		pat, err := parsePattern(p)
    		if err != nil {
    			panic(err)
    		}
    		root.addPattern(pat, nil)
    	}
    	return root
    }
    
    func TestRoutingAddPattern(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GenerationPlanBuilder.java

    import java.io.File;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    import java.util.List;
    
    /**
     * Builder for the properly order list of {@link GenerationPlan generation plans}.
     *
     * <p>IMPL NOTE : Uses recursive calls to achieve ordering.</p>
     */
    public class GenerationPlanBuilder {
        private static final Logger LOGGER = LoggerFactory.getLogger(GenerationPlanBuilder.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. pkg/test/framework/features/README.md

    ```go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand20 = moduleId('wren', 'flowers')
            def operand21 = moduleId('insurance', 'cobweb')
            def operand22 = moduleId('crib', 'shame')
            def operand23 = moduleId('plate', 'authority')
            def operand24 = moduleId('stove', 'cave')
            def operand25 = moduleId('floor', 'shelf')
            def operand26 = moduleId('snakes', 'snakes')
            def operand27 = moduleId('crib', 'ants')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. internal/store/store.go

    						return
    					}
    				}
    			}
    
    			select {
    			case <-retryTicker.C:
    			case <-doneCh:
    				return
    			}
    		}
    	}()
    
    	return keyCh
    }
    
    // sendItems - Reads items from the store and re-plays.
    func sendItems(target Target, keyCh <-chan Key, doneCh <-chan struct{}, logger logger) {
    	retryTicker := time.NewTicker(retryInterval)
    	defer retryTicker.Stop()
    
    	send := func(key Key) bool {
    		for {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/cc/training/coordinator.h

    /// Without a coordinator, QueueRunners have to be joined in a specific order;
    /// otherwise the QueueRunner::Join() could sometimes hang. The
    /// Coordinator::RequestStop() plays the key role which notifies all running
    /// threads under a coordinator to stop. This function could be called by any
    /// thread or any client.
    /// Usage, in the client:
    ///   Coordinator coord;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top