Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,196 for assignOp (0.18 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectContainer.java

         *
         * @param name The name to find or assign to the created object
         * @return The found or created object. Never null.
         */
        T maybeCreate(String name);
    
        /**
         * Creates a new item with the given name, adding it to this container, then configuring it with the given closure.
         *
         * @param name The name to assign to the created object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/well_known_annotations.go

    	// IngressClass should be considered default. When a single IngressClass
    	// resource has this annotation set to true, new Ingress resources without a
    	// class specified will be assigned this default class.
    	AnnotationIsDefaultIngressClass = "ingressclass.kubernetes.io/is-default-class"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 19:42:48 UTC 2021
    - 951 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

            return transpose;
          }
        }
      }
      return nullptr;
    }
    
    #define GEN_PASS_DEF_LAYOUTASSIGNMENTPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // LayoutAssignmentPass assigns optimal data layout (data format) for all
    // layout sensitive operations.
    class LayoutAssignmentPass
        : public impl::LayoutAssignmentPassBase<LayoutAssignmentPass> {
     public:
      LayoutAssignmentPass() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue14591.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test to make sure we don't think values are dead
    // when they are assigned to a PPARAMOUT slot before
    // the last GC safepoint.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    )
    
    // When a T is deallocated, T[1] is certain to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 769 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_utils.h

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace tflite {
    
    // The following methods are introduced to resolve op builtin code shortage
    // problem. The new builtin operator will be assigned to the extended builtin
    // code field in the flatbuffer schema. Those methods helps to hide builtin code
    // details.
    BuiltinOperator GetBuiltinCode(const OperatorCode *op_code);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/variable.h

    namespace tensorflow {
    
    class Variable : public TensorHandleConvertible {
     public:
      // Creates an uninitialized resource variable. Note that a caller must
      // call "assign" to associate a value with the variable.
      static Status CreateUninitialized(
          ImmediateExecutionContext* ctx, DataType dtype, TensorShape shape,
          absl::optional<std::string> name, const char* raw_device_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskFilePropertyBuilder.java

        /**
         * Sets the name for this property. The name must be a non-empty string.
         *
         * <p>If the method is not called, or if it is called with {@code null}, a name
         * will be assigned to the property automatically.</p>
         */
        TaskFilePropertyBuilder withPropertyName(String propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 10:29:21 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. docs/bucket/replication/setup_replication.sh

          ],
          "Resource": [
           "arn:aws:s3:::bucket"
          ]
         }
        ]
       }
    EOF
    mc admin policy create source repladmin-policy ./repladmin-policy-source.json
    cat ./repladmin-policy-source.json
    
    #assign this replication policy to repladmin
    mc admin policy attach source repladmin-policy --user=repladmin
    
    ### on dest alias
    # Create a replication user : repluser on dest alias
    mc admin user add dest repluser repluser123
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/mcs.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:34000
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 21:44:38 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top