Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,105 for assignOp (0.2 sec)

  1. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.noptrbss", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.enoptrbss", 0), sect)
    
    	// Code coverage counters are assigned to the .noptrbss section.
    	// We assign them in a separate pass so that they stay aggregated
    	// together in a single blob (coverage runtime depends on this).
    	covCounterDataStartOff = sect.Length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    }
    
    // SetDefaults_Etcd assigns default values for the proxy
    func SetDefaults_Etcd(obj *ClusterConfiguration) {
    	if obj.Etcd.External == nil && obj.Etcd.Local == nil {
    		obj.Etcd.Local = &LocalEtcd{}
    	}
    	if obj.Etcd.Local != nil {
    		if obj.Etcd.Local.DataDir == "" {
    			obj.Etcd.Local.DataDir = DefaultEtcdDataDir
    		}
    	}
    }
    
    // SetDefaults_JoinConfiguration assigns default values to a regular node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		switch x.(type) {
    		case *FileSyntax:
    			continue
    		}
    
    		// Do not assign suffix comments to something that starts
    		// on an earlier line, so that in
    		//
    		//	x ( y
    		//		z ) // comment
    		//
    		// we assign the comment to z and not to x ( ... ).
    		if start.Line != end.Line {
    			continue
    		}
    		xcom := x.Comment()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyExtensions.kt

    import java.io.File
    
    
    /**
     * Assign value: T to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: T?) {
        this.set(value)
    }
    
    
    /**
     * Assign value: Provider<T> to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: Provider<out T?>) {
        this.set(value)
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/partially_decluster_pass_test.cc

      TF_ASSERT_OK(DeviceFactory::AddDevices(
          SessionOptions(), "/job:localhost/replica:0/task:0", &devices));
    
      // Scope::ToGraph loses the assigned device name since it goes through
      // GraphDef/NodeDef which does not have a field for the assigned device name.
      Node* n = FindNodeByName(*graph, "shape");
      ASSERT_NE(n, nullptr);
      n->set_assigned_device_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  6. RELEASE.md

            [guide on input distribution](https://www.tensorflow.org/tutorials/distribute/input).
    *   Allow var.assign on MirroredVariables with aggregation=NONE in replica
        context. Previously this would raise an error. We now allow this because
        many users and library writers find using `.assign` in replica context to be
        more convenient, instead of having to use `Strategy.extended.update` which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_InitConfiguration assigns default values for the InitConfiguration
    func SetDefaults_InitConfiguration(obj *InitConfiguration) {
    	SetDefaults_BootstrapTokens(obj)
    	SetDefaults_APIEndpoint(&obj.LocalAPIEndpoint)
    	SetDefaults_NodeRegistration(&obj.NodeRegistration)
    }
    
    // SetDefaults_ClusterConfiguration assigns default values for the ClusterConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. pkg/volume/util/fsquota/quota_linux.go

    	}
    	inodes, err := applier.GetInodes(path, dirQuotaMap[path])
    	if err != nil {
    		return nil, err
    	}
    	return resource.NewQuantity(inodes, resource.DecimalSI), nil
    }
    
    // ClearQuota -- remove the quota assigned to a directory
    func ClearQuota(m mount.Interface, path string) error {
    	klog.V(3).Infof("ClearQuota %s", path)
    	if !enabledQuotasForMonitoring() {
    		return fmt.Errorf("clearQuota called, but quotas disabled")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSetTest.groovy

            1 * artifactVisitor.endVisitCollection(_)
            0 * _
        }
    
        def "does not visit files when no id provided and assigned id is filtered"() {
            def f1 = new File("a.jar")
            def f2 = new File("a.dll")
            def listener = Mock(ResolvedArtifactSet.Visitor)
            def visitor = Mock(ArtifactVisitor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/compress/flate/huffman_code.go

    	var total int
    	for i, f := range freq {
    		if f != 0 {
    			total += int(f) * int(h.codes[i].len)
    		}
    	}
    	return total
    }
    
    const maxBitsLimit = 16
    
    // bitCounts computes the number of literals assigned to each bit size in the Huffman encoding.
    // It is only called when list.length >= 3.
    // The cases of 0, 1, and 2 literals are handled by special case code.
    //
    // list is an array of the literals with non-zero frequencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top