Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 331 for assign_id (0.14 sec)

  1. src/cmd/compile/internal/types2/assignments.go

    // This file implements initialization and assignment checks.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	. "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: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

        return failure();
      }
    
      OpBuilder before_cluster_builder(cluster);
      IdentityOp assigned_id = before_cluster_builder.create<IdentityOp>(
          val_bcast.getLoc(), block_arg.getType(), block_arg);
      assigned_id->setAttr(kICIWeightDistributionMlirBridgeMarker,
                           before_cluster_builder.getBoolAttr(true));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	// `scope-hostname.io/name`.
    	// If empty, it will be defaulted:
    	//  1. If it's a kubelet client certificate, it is assigned
    	//     "kubernetes.io/kube-apiserver-client-kubelet".
    	//  2. If it's a kubelet serving certificate, it is assigned
    	//     "kubernetes.io/kubelet-serving".
    	//  3. Otherwise, it is assigned "kubernetes.io/legacy-unknown".
    	// Distribution of trust for signers happens out of band.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  4. tests/upsert_test.go

    	if user6.Name != "find or create" || user6.ID == 0 || user6.Age != 44 {
    		t.Errorf("user should be found and updated with assigned attrs")
    	}
    
    	DB.Where(&User{Name: "find or create"}).Find(&user7)
    	if user7.Name != "find or create" || user7.ID == 0 || user7.Age != 44 {
    		t.Errorf("user should be found and updated with assigned attrs")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ScalaCompileJavaToolchainIntegrationTest.groovy

            "java extension" | "when configured"            | null     | "other"           | "other"
            "assigned tool"  | "when configured"            | "other"  | null              | "other"
            "assigned tool"  | "over java extension"        | "other"  | "current"         | "other"
        }
    
        def "can compile source and run tests using Java #javaVersion for Scala "() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:32:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileToolchainIntegrationTest.groovy

            "java extension" | "when configured"            | null     | "other"           | "other"
            "assigned tool"  | "when configured"            | "other"  | null              | "other"
            "assigned tool"  | "over java extension"        | "other"  | "current"         | "other"
        }
    
        def "up-to-date depends on the toolchain for Groovy "() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:37:16 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 4
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    						priority = 4
    					}
    					break
    				}
    			}
    		}
    		// priority is calculated using the already assigned priority using failoverPriority.
    		// Since there are at most 5 priorities can be assigned using locality failover(0-4),
    		// we multiply the priority by 5 for maintaining the priorities already assigned.
    		// Afterwards the final priorities can be calculted from 0 (highest) to N (lowest) without skipping.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/cc/tools/freeze_saved_model_test.cc

          Output read_var_1 =
              ops::ReadVariableOp(scope.WithOpName("var_1/Read/ReadVariableOp"),
                                  var, DataType::DT_FLOAT);
          auto assign_1 =
              ops::AssignVariableOp(scope.WithOpName("assign_1"), var_1, a);
        } else {
          read_var = ops::Variable(scope.WithOpName("var"), {}, DataType::DT_FLOAT);
          Output assign = ops::Assign(scope.WithOpName("assign"), read_var, a);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Request.kt

        ): Builder = commonMethod(method, body)
    
        /**
         * Attaches [tag] to the request using [T] as a key. Tags can be read from a request using
         * [Request.tag]. Use null to remove any existing tag assigned for [T].
         *
         * Use this API to attach timing, debugging, or other application data to a request so that
         * you may read it in interceptors, event listeners, or callbacks.
         */
        @JvmName("reifiedTag")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top