Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,119 for nothings (0.28 sec)

  1. pkg/registry/rbac/rest/storage_rbac.go

    		// If source ClusterRoleBinding does not exist, do nothing.
    		existingRoleBinding, err := clusterRoleBindingClient.ClusterRoleBindings().Get(context.TODO(), existingBindingName, metav1.GetOptions{})
    		if apierrors.IsNotFound(err) {
    			continue
    		}
    		if err != nil {
    			return err
    		}
    
    		// If the target ClusterRoleBinding already exists, do nothing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  2. src/go/types/instantiate.go

    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    		if tparams.Len() == 0 {
    			return orig // nothing to do (minor optimization)
    		}
    
    		return check.newAliasInstance(pos, orig, targs, ctxt)
    
    	case *Signature:
    		assert(expanding == nil) // function instances cannot be reached from Named types
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. test/live.go

    func printint(int)
    
    func f1() {
    	var x *int       // ERROR "stack object x \*int$"
    	printpointer(&x) // ERROR "live at call to printpointer: x$"
    	printpointer(&x)
    }
    
    func f2(b bool) {
    	if b {
    		printint(0) // nothing live here
    		return
    	}
    	var x *int       // ERROR "stack object x \*int$"
    	printpointer(&x) // ERROR "live at call to printpointer: x$"
    	printpointer(&x)
    }
    
    func f3(b1, b2 bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

        }
    
        def "can use with action api"() {
            given:
            def writer = new StringWriter()
            def input = "<things><thing/></things>"
            def generator = new Action<Writer>() {
                void execute(Writer t) {
                    t.write(input)
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            public Class<? extends T> loadClass() {
                if (scriptClass == null) {
                    if (isEmpty && !hasMethods) {
                        throw new UnsupportedOperationException("Cannot load script that does nothing.");
                    }
                    try {
                        scope = prepareClassLoaderScope();
                        ClassLoader loader = scope.getLocalClassLoader();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

      /**
       * Start the service.
       *
       * <p>By default this method does nothing.
       */
      protected void startUp() throws Exception {}
    
      /**
       * Stop the service. This is guaranteed not to run concurrently with {@link #runOneIteration}.
       *
       * <p>By default this method does nothing.
       */
      protected void shutDown() throws Exception {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/instantiate.go

    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    		if tparams.Len() == 0 {
    			return orig // nothing to do (minor optimization)
    		}
    
    		return check.newAliasInstance(pos, orig, targs, ctxt)
    
    	case *Signature:
    		assert(expanding == nil) // function instances cannot be reached from Named types
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. tensorflow/cc/tools/freeze_saved_model_test.cc

          Output assign = ops::Assign(scope.WithOpName("assign"), var, a);
        }
    
        TF_ASSERT_OK(scope.ToGraphDef(&graph_def));
        // "c" isn't dependent on the variable, so nothing should be frozen.
        TF_ASSERT_OK(AddGraphDefWithOutputsToSavedModelBundle(
            graph_def, {"c:0"}, "assign", &saved_model_bundle));
    
        GraphDef frozen_graph_def;
        std::unordered_set<string> inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

                                                &devices)))
        return signalPassFailure();
    
      // If there is no runtime device information and data format is not explicitly
      // forced, there is nothing to do.
      if (devices.NumDevices() == 0 && force_data_format_.empty()) return;
    
      func.walk([&](LayoutSensitiveInterface layout_sensitive_interface) {
        // Get desired op data format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. pkg/util/async/bounded_frequency_runner_test.go

    	// rel=0ms
    	obj.setRetryFn(func() { runner.RetryAfter(5 * time.Second) })
    	runner.Run()
    	waitForRunWithRetry("first run", t, timer, obj, 5*time.Second)
    
    	// Nothing happens...
    	timer.advance(time.Second) // rel=1000ms
    	waitForNothing("minInterval, nothing queued", t, timer, obj)
    
    	// After retryInterval, function is called
    	timer.advance(4 * time.Second) // rel=5000ms
    	waitForRun("retry", t, timer, obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top