Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 331 for assign_id (0.53 sec)

  1. pkg/registry/core/pod/storage/storage.go

    			Type:   api.PodScheduled,
    			Status: api.ConditionTrue,
    		})
    		finalPod = pod
    		return pod, nil
    	}), dryRun, nil)
    	return finalPod, err
    }
    
    // assignPod assigns the given pod to the given machine.
    func (r *BindingREST) assignPod(ctx context.Context, podUID types.UID, podResourceVersion, podID string, machine string, annotations map[string]string, dryRun bool) (err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

                    val assigned = objectReflection.properties.getValue(property)
                    applyPropertyValue(objectReflection.objectOrigin, property, assigned)
                    apply(assigned.value, conversionFilter)
                    // TODO: record properties assigned in function calls or constructors, so that
                    //       we can check that all properties were assigned
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

        }
        info.execute_output_index = execute_output.index();
        info.assign = assign_op;
        if (!last_assign || last_assign->isBeforeInBlock(assign_op)) {
          last_assign = assign_op;
        }
        VLOG(2) << "Adding assign op to merge candidates: "
                << debugString(assign_op);
        all_assigns.insert(assign_op);
        output_merged[execute_output.index()] = true;
      }
    
      if (last_assign != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionOutput.kt

        }
    
        data class FromLocalValue(val localValue: LocalValue, val assigned: ObjectOrigin) : DelegatingObjectOrigin {
            override val delegate: ObjectOrigin
                get() = assigned
    
            override val originElement: LanguageTreeElement
                get() = assigned.originElement
    
            override fun toString(): String = "(val ${localValue.name} = $assigned)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/reflect/abi.go

    		e = len(a.steps)
    	} else {
    		e = a.valueStart[i+1]
    	}
    	return a.steps[s:e]
    }
    
    // addArg extends the abiSeq with a new Go value of type t.
    //
    // If the value was stack-assigned, returns the single
    // abiStep describing that translation, and nil otherwise.
    func (a *abiSeq) addArg(t *abi.Type) *abiStep {
    	// We'll always be adding a new value, so do that first.
    	pStart := len(a.steps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/net/net_fake.go

    			panic("unreachable")
    		}
    	}
    
    	switch ffd.fd.net {
    	case "tcp", "tcp4", "tcp6":
    		if addr == nil {
    			return assignIP(new(TCPAddr))
    		}
    		return assignIP(addr)
    
    	case "udp", "udp4", "udp6":
    		if addr == nil {
    			return assignIP(new(UDPAddr))
    		}
    		return assignIP(addr)
    
    	case "unix", "unixgram", "unixpacket":
    		uaddr, ok := addr.(*UnixAddr)
    		if !ok && addr != nil {
    			return &AddrError{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/value.go

    	return reg.(*Register).objNum
    }
    
    // Reg returns the register assigned to v, in cmd/internal/obj/$ARCH numbering.
    func (v *Value) Reg() int16 {
    	reg := v.Block.Func.RegAlloc[v.ID]
    	if reg == nil {
    		v.Fatalf("nil register for value: %s\n%s\n", v.LongString(), v.Block.Func)
    	}
    	return reg.(*Register).objNum
    }
    
    // Reg0 returns the register assigned to the first output of v, in cmd/internal/obj/$ARCH numbering.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

            value {
              b: true
            }
          }
        }
        node {
          name: "save/restore_shard"
          op: "NoOp"
          input: "^save/Assign"
          input: "^save/Assign_1"
          input: "^save/Assign_2"
        }
        node {
          name: "save/restore_all"
          op: "NoOp"
          input: "^save/restore_shard"
        }
        versions {
          producer: 23
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        public abstract void finalizeOnNextGet();
    
        public abstract void disallowUnsafeRead();
    
        /**
         * Marks this value state as being explicitly assigned. Does not remember the given value in any way.
         *
         * @param value the new explicitly assigned value
         * @return the very <code>value</code> given
         */
        //TODO-RC rename this or the overload as they have significantly different semantics
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/go/types/assignments.go

    // This file implements initialization and assignment checks.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	. "internal/types/errors"
    	"strings"
    )
    
    // assignment reports whether x can be assigned to a variable of type T,
    // if necessary by attempting to convert untyped values to the appropriate
    // type. context describes the context in which the assignment takes place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top