Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 677 for assignments (0.21 sec)

  1. pkg/kubelet/cm/cpumanager/state/state.go

    		ret[pod] = make(map[string]cpuset.CPUSet, len(as[pod]))
    		for container, cset := range as[pod] {
    			ret[pod][container] = cset
    		}
    	}
    	return ret
    }
    
    // Reader interface used to read current cpu/pod assignment state
    type Reader interface {
    	GetCPUSet(podUID string, containerName string) (cpuset.CPUSet, bool)
    	GetDefaultCPUSet() cpuset.CPUSet
    	GetCPUSetOrDefault(podUID string, containerName string) cpuset.CPUSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 00:59:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/issues0.go

    var a2, b2 /* ERROR "cycle" */ = 0 /* ERROR "assignment mismatch" */ /* ERROR "assignment mismatch" */ > 0<<""[b2]
    var a3, b3 /* ERROR "cycle" */ = int /* ERROR "assignment mismatch" */ /* ERROR "assignment mismatch" */ (1<<""[b3])
    
    // issue10260
    // Check that error messages explain reason for interface assignment failures.
    type (
    	I0 interface{}
    	I1 interface{ foo() }
    	I2 interface{ foo(x int) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/FailureUtils.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.parsing
    
    import org.gradle.internal.declarativedsl.language.Assignment
    import org.gradle.internal.declarativedsl.language.Block
    import org.gradle.internal.declarativedsl.language.Element
    import org.gradle.internal.declarativedsl.language.ElementResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/typeinference.go

    	var y Tb[*int, int]
    	x = y /* ERRORx `cannot use y .* in assignment` */
    	_ = x
    }
    
    // recursive inference
    type Tr[A any, B *C, C *D, D *A] int
    
    func _() {
    	var x Tr /* ERROR "not enough type arguments for type Tr: have 1, want 4" */ [string]
    	var y Tr[string, ***string, **string, *string]
    	var z Tr[int, ***int, **int, *int]
    	x = y /* ERRORx `cannot use y .* in assignment` */
    	x = z // ERRORx `cannot use z .* as Tr`
    	_ = x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/expr3.go

    	// unexported fields
    	_ = time.Time{}
    	_ = time.Time{sec /* ERROR "unknown field" */ : 0}
    	_ = time.Time{
    		0 /* ERROR "implicit assignment to unexported field wall in struct literal" */,
    		0 /* ERROR "implicit assignment" */ ,
    		nil /* ERROR "implicit assignment" */ ,
    	}
    }
    
    func array_literals() {
    	type A0 [0]int
    	_ = A0{}
    	_ = A0{0 /* ERRORx `index .* out of bounds` */}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. src/reflect/abi.go

    		// at the top.
    		a.stackBytes = align(a.stackBytes, uintptr(t.Align()))
    		return nil
    	}
    	// Hold a copy of "a" so that we can roll back if
    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    class ValueArray1 {
     public:
      explicit ValueArray1(T1 v1) : v1_(v1) {}
    
      template <typename T>
      operator ParamGenerator<T>() const { return ValuesIn(&v1_, &v1_ + 1); }
    
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ValueArray1& other);
    
      const T1 v1_;
    };
    
    $range i 2..n
    $for i [[
    $range j 1..i
    
    template <$for j, [[typename T$j]]>
    class ValueArray$i {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. callbacks/create.go

    								if field.AutoUpdateTime > 0 {
    									assignment := clause.Assignment{Column: clause.Column{Name: field.DBName}, Value: curTime}
    									switch field.AutoUpdateTime {
    									case schema.UnixNanosecond:
    										assignment.Value = curTime.UnixNano()
    									case schema.UnixMillisecond:
    										assignment.Value = curTime.UnixMilli()
    									case schema.UnixSecond:
    										assignment.Value = curTime.Unix()
    									}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    class ValueArray1 {
     public:
      explicit ValueArray1(T1 v1) : v1_(v1) {}
    
      template <typename T>
      operator ParamGenerator<T>() const { return ValuesIn(&v1_, &v1_ + 1); }
    
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ValueArray1& other);
    
      const T1 v1_;
    };
    
    $range i 2..n
    $for i [[
    $range j 1..i
    
    template <$for j, [[typename T$j]]>
    class ValueArray$i {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ScriptBlockBuilder.java

     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.Action;
    
    import javax.annotation.Nullable;
    
    public interface ScriptBlockBuilder {
        /**
         * Adds a property assignment statement to this block
         */
        void propertyAssignment(@Nullable String comment, String propertyName, Object propertyValue, boolean assignOperator);
    
        /**
         * Adds a method invocation statement to this block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 03:37:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top