Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 631 for _Assign (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    		field.Set(srcValue)
    		return nil
    	}
    	if srcValue.Type().ConvertibleTo(field.Type()) {
    		field.Set(srcValue.Convert(field.Type()))
    		return nil
    	}
    	return fmt.Errorf("couldn't assign/convert %v to %v", srcValue.Type(), field.Type())
    }
    
    // Field puts the value of fieldName, which must be a member of v, into dest,
    // which must be a variable to which this field's value can be assigned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

         * mean one can assign `null` to a variable of this type because it may be unknown if this type can accept `null`. For example, a public value
         * of type `T:Any?` can potentially be null. But one can not assign `null` to such a variable because the instantiated type may not be
         * nullable.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/cc/training/queue_runner_test.cc

    namespace tensorflow {
    namespace {
    
    using error::Code;
    using ops::Assign;
    using ops::Const;
    using ops::CountUpTo;
    using ops::FIFOQueue;
    using ops::QueueClose;
    using ops::QueueDequeue;
    using ops::QueueEnqueue;
    using ops::RandomNormal;
    using ops::Square;
    using ops::Variable;
    
    constexpr char kAssignOpName[] = "assign";
    constexpr char kCancelOp0[] = "cancel0";
    constexpr char kCancelOp1[] = "cancel1";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 21 06:27:51 UTC 2019
    - 14.7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue26616.go

    	a = three()         // ERROR "assignment mismatch: 1 variable but three returns 3 values|multiple-value function call in single-value context|cannot assign"
    	b := three()        // ERROR "assignment mismatch: 1 variable but three returns 3 values|single variable set to multiple-value|multiple-value function call in single-value context|cannot initialize"
    	_, _ = a, b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 19:41:41 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/cap_freebsd.go

    		if capidxbit(rights.Rights[i]) != capidxbit(right) {
    			return errors.New("index mismatch")
    		}
    		rights.Rights[i] |= right
    		if capidxbit(rights.Rights[i]) != capidxbit(right) {
    			return errors.New("index mismatch (after assign)")
    		}
    	}
    
    	return nil
    }
    
    // CapRightsClear clears the permissions in clearrights from rights.
    func CapRightsClear(rights *CapRights, clearrights []uint64) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/builtin.go

    // license that can be found in the LICENSE file.
    
    package goobj
    
    import "internal/buildcfg"
    
    // Builtin (compiler-generated) function references appear
    // frequently. We assign special indices for them, so they
    // don't need to be referenced by name.
    
    // NBuiltin returns the number of listed builtin
    // symbols.
    func NBuiltin() int {
    	return len(builtins)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

      // Assigns a new value to the variable.
      void Assign(TFE_Context* context, TFE_TensorHandle* value, TF_Status* status);
      // Adds `value` to the existing value of the variable.
      void AssignAdd(TFE_Context* context, TFE_TensorHandle* value,
                     TF_Status* status);
    
     private:
      // Helper for running any single-argument assignment ops (Assign, AssignAdd,
      // AssignSub, ...).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  8. architecture/standards/0005-introduce-core-ui-architecture-module.md

    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    - Introduce the module and move the services and their implementations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/_affinity.tpl

    {{/* affinity - https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ */}}
    
    {{ define "nodeaffinity" }}
    nodeAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
      {{- include "nodeAffinityRequiredDuringScheduling" . }}
      preferredDuringSchedulingIgnoredDuringExecution:
      {{- include "nodeAffinityPreferredDuringScheduling" . }}
    {{- end }}
    
    {{- define "nodeAffinityRequiredDuringScheduling" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurableFileCollectionExtensions.kt

     * This is the same as calling ConfigurableFileCollection.setFrom(fileCollection: FileCollection).
     *
     * @since 8.2
     */
    fun ConfigurableFileCollection.assign(fileCollection: FileCollection) {
        this.setFrom(fileCollection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top