Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for creators (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // Instead of defining a Delta that holds an original, a patch and a set of preconditions,
    // the reconcile method accepts a set of preconditions as an argument.
    
    // CreateTwoWayMergePatch creates a patch that can be passed to StrategicMergePatch from an original
    // document and a modified document, which are passed to the method as json encoded content. It will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-device-cluster-formation`
    
    _Form clusters from instructions assigned to same device_
    
    Clusters operations with the same device assignment id. For each
    cluster, creates a "tf_device.device_launch" op with a Region containing the
    ops in each cluster and replaces the ops with the new launch op.
    
    For example, given the following program:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"unicode"
    )
    
    var (
    	conf         = printer.Config{Mode: printer.SourcePos, Tabwidth: 8}
    	noSourceConf = printer.Config{Tabwidth: 8}
    )
    
    // writeDefs creates output files to be compiled by gc and gcc.
    func (p *Package) writeDefs() {
    	var fgo2, fc io.Writer
    	f := creat(*objDir + "_cgo_gotypes.go")
    	defer f.Close()
    	fgo2 = f
    	if *gccgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    		mheap_.specialprofilealloc.free(unsafe.Pointer(sp))
    		unlock(&mheap_.speciallock)
    	case _KindSpecialReachable:
    		sp := (*specialReachable)(unsafe.Pointer(s))
    		sp.done = true
    		// The creator frees these.
    	case _KindSpecialPinCounter:
    		lock(&mheap_.speciallock)
    		mheap_.specialPinCounterAlloc.free(unsafe.Pointer(s))
    		unlock(&mheap_.speciallock)
    	default:
    		throw("bad special kind")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	if err != nil {
    		return guid, err
    	}
    	err = clsidFromString(str16, &guid)
    	if err != nil {
    		return guid, err
    	}
    	return guid, nil
    }
    
    // GenerateGUID creates a new random GUID.
    func GenerateGUID() (GUID, error) {
    	guid := GUID{}
    	err := coCreateGuid(&guid)
    	if err != nil {
    		return guid, err
    	}
    	return guid, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      final Equivalence<Object> keyEquivalence;
    
      /** Strategy for handling entries and segments in a type-safe and efficient manner. */
      final transient InternalEntryHelper<K, V, E, S> entryHelper;
    
      /**
       * Creates a new, empty map with the specified strategy, initial capacity and concurrency level.
       */
      private MapMakerInternalMap(MapMaker builder, InternalEntryHelper<K, V, E, S> entryHelper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.extendsFrom(otherConf)
    
            when:
            otherConf.setExtendsFrom([configuration])
    
            then:
            thrown InvalidUserDataException
        }
    
        def "creates hierarchy"() {
            def root1 = conf("root1")
            def middle1 = conf("middle1").extendsFrom(root1)
            def root2 = conf("root2")
            def middle2 = conf("middle2").extendsFrom(root2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    		ProxyStatusConflictInboundListener,
    		DuplicatedClusters,
    		ProxyStatusClusterNoInstances,
    		DuplicatedDomains,
    		DuplicatedSubsets,
    	}
    )
    
    // NewPushContext creates a new PushContext structure to track push status.
    func NewPushContext() *PushContext {
    	return &PushContext{
    		ServiceIndex:            newServiceIndex(),
    		virtualServiceIndex:     newVirtualServiceIndex(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          this.certificatePinner =
            builder.certificatePinner
              .withCertificateChainCleaner(certificateChainCleaner!!)
        }
    
        verifyClientState()
      }
    
      /**
       * Creates an [Address] of out of the provided [HttpUrl]
       * that uses this client’s DNS, TLS, and proxy configuration.
       */
      fun address(url: HttpUrl): Address {
        var useSslSocketFactory: SSLSocketFactory? = null
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    				{key: "region", value: "r1"}: 2,
    				{key: "zone", value: "z11"}:  2,
    			},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			// getMeta creates predicate meta data given the list of pods.
    			getState := func(pods []*v1.Pod) (*InterPodAffinity, *framework.CycleState, *preFilterState, *cache.Snapshot) {
    				snapshot := cache.NewSnapshot(pods, test.nodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
Back to top