Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for addLink (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    }
    
    class CanFuseConvOrDepthwiseConv<string is_depthwise> : Constraint<
      CPred<"TFL::CanFuseConvOrDepthwiseConv($0, $1, " # is_depthwise # ")">>;
    
    // If we see a binary op (add, sub) op adding a constant value to a convolution
    // op with constant bias, we can fuse the binary op into the convolution op by
    // constant folding the bias and the binary op's constant operand. The following
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    			},
    			DeletionTimestamp: &deletedTs,
    		},
    		AddressType: discovery.AddressTypeIPv4,
    	}
    	err = esController.endpointSliceStore.Add(endpointSlice)
    	if err != nil {
    		t.Fatalf("Expected no error adding EndpointSlice: %v", err)
    	}
    	_, err = client.DiscoveryV1().EndpointSlices(ns).Create(context.TODO(), endpointSlice, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Expected no error creating EndpointSlice: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

        # unfortunate amount of time to ensure that things have quiesced, then we
        # wait until we're sure the route is really gone before re-adding it again.
        Log-Output "Waiting 45 seconds for host network state to quiesce"
        Start-Sleep 45
        WaitFor_GceMetadataServerRouteToBeRemoved
        Log-Output "Re-adding the GCE metadata server route"
        Add_GceMetadataServerRoute
      }
      Verify_GceMetadataServerRouteIsPresent
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    			// Something is deeply wrong. resolveMissingImports gave us a non-empty
    			// set of modules to add to the graph, but adding those modules had no
    			// effect — either they were already in the graph, or updateRoots did not
    			// add them as requested.
    			panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
    		}
    		ld.requirements = rs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	}
    
    	// Handling taint based evictions. Because we don't want a dedicated logic in TaintManager for NC-originated
    	// taints and we normally don't rate limit evictions caused by taints, we need to rate limit adding taints.
    	go wait.UntilWithContext(ctx, nc.doNoExecuteTaintingPass, scheduler.NodeEvictionPeriod)
    
    	// Incorporate the results of node health signal pushed from kubelet to master.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     *
     * <li>Calling {@link #addProvider(ServiceRegistrationProvider)} to register a service provider bean. A provider bean may have factory, decorator and configuration methods as described below.</li>
     *
     * <li>Adding a factory method. A factory method should be annotated with {@literal @}{@link Provides}, have a name that starts with 'create', and have a non-void return type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/defaults_test.go

    	// Forbidden: adding a new field `MyField *bool` and defaulting it to a non-nil value
    	// Forbidden: defaulting an existing field `MyField *bool` when it was previously not defaulted
    	// Forbidden: changing an existing default value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    		UpdateFunc: func(oldObj, newObj interface{}) {
    			jm.updateJob(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			jm.deleteJob(logger, obj)
    		},
    	}); err != nil {
    		return nil, fmt.Errorf("adding Job event handler: %w", err)
    	}
    	jm.jobLister = jobInformer.Lister()
    	jm.jobStoreSynced = jobInformer.Informer().HasSynced
    
    	if _, err := podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return The container.
         */
        <T> NamedDomainObjectContainer<T> container(Class<T> type, Closure factoryClosure);
    
        /**
         * Allows adding DSL extensions to the project. Useful for plugin authors.
         *
         * @return Returned instance allows adding DSL extensions to the project
         */
        @Override
        ExtensionContainer getExtensions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    //
    // Disabling write barriers is necessary to ensure that after we've
    // confirmed that we've drained gcw, that we don't accidentally end
    // up flipping that condition by immediately adding work in the form
    // of a write barrier buffer flush.
    //
    // Don't set nowritebarrierrec because it's safe for some callees to
    // have write barriers enabled.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top