Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for getTags (0.12 sec)

  1. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchainManager#logger</exclude>
                  <!-- Remove plexus utils -->
                  <exclude>org.apache.maven.project.ProjectSorter#getDAG():METHOD_REMOVED</exclude>
                  <!-- classes moved to maven-compat -->
                  <exclude>org.apache.maven.plugin.PluginManager</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject.go

    	imageName := "proxyv2"
    	global := values.GetGlobal()
    
    	tag := ""
    	if global.GetTag() != nil { // Tag is an interface but we need the string form.
    		tag = fmt.Sprintf("%v", global.GetTag().AsInterface())
    	}
    
    	imageType := global.GetVariant()
    	if image != nil {
    		imageType = image.ImageType
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      let results = (outs
        Variadic<TFR_allowedResultType>:$outs);
    
      let extraClassDeclaration = [{
        // Get the argument operands to the called function.
        operand_range getArgOperands() { return getArgs(); }
        MutableOperandRange getArgOperandsMutable() {
          return getArgsMutable();
        }
    
        // Return the callee of this operation.
        CallInterfaceCallable getCallableForCallee() { return getCalleeAttr(); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// owner: @jefftree @alexzielenski
    	// alpha: v1.26
    	// beta: v1.27
    	// stable: v1.30
    	//
    	// Enables an single HTTP endpoint /discovery/<version> which supports native HTTP
    	// caching with ETags containing all APIResources known to the apiserver.
    	AggregatedDiscoveryEndpoint featuregate.Feature = "AggregatedDiscoveryEndpoint"
    
    	// owner: @smarterclayton
    	// alpha: v1.8
    	// beta: v1.9
    	// stable: 1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    		if nerr.Err != nil {
    			err := AdminError{
    				Code:       AdminUpdateApplyFailure,
    				Message:    nerr.Err.Error(),
    				StatusCode: http.StatusInternalServerError,
    			}
    			logger.GetReqInfo(ctx).SetTags("peerAddress", nerr.Host.String())
    			adminLogIf(ctx, fmt.Errorf("server update failed with %w", err))
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

                quant::GetUniformQuantizedTypeForBias(
                    quant_params, legacy_float_scale, adjusted_quant_dim))) {
          return quant::UniformQuantizedType::get(
              qtype.getFlags(), qtype.getStorageType(), qtype.getExpressedType(),
              qtype.getScale() * scale, qtype.getZeroPoint(),
              qtype.getStorageTypeMin(), qtype.getStorageTypeMax());
        }
        return {};
      };
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. cmd/object-multipart-handlers.go

    	//   ETag := MD5(ETag_p1, ETag_p2, ...)+"-N"   (N being the number of parts)
    	//
    	// This is independent of encryption. An encrypted multipart
    	// object also has an ETag that is the MD5 of its part ETags.
    	// The fact the in case of encryption the ETag of a part is
    	// not the MD5 of the part content does not change that.
    	var completeETags []etag.ETag
    	for _, part := range complMultipartUpload.Parts {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs
        Variadic<TF_Tensor>:$output
      );
    
      let extraClassDeclaration = [{
        // Gets the argument operands to the called function.
        operand_range getArgOperands() { return getArgs(); }
        MutableOperandRange getArgOperandsMutable() {
          return getArgsMutable();
        }
    
        // Returns the callee of this operation.
        CallInterfaceCallable getCallableForCallee() { return getFAttr(); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            if (auto per_axis =
                    qtype.dyn_cast<mlir::quant::UniformQuantizedPerAxisType>()) {
              new_qtype = mlir::quant::UniformQuantizedPerAxisType::get(
                  per_axis.getFlags(), per_axis.getStorageType(),
                  per_axis.getExpressedType(), per_axis.getScales(),
                  per_axis.getZeroPoints(), per_axis.getQuantizedDimension(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        public List<String> getTaskNames() {
            List<String> taskNames = new ArrayList<>();
            for (TaskExecutionRequest taskRequest : taskRequests) {
                taskNames.addAll(taskRequest.getArgs());
            }
            return taskNames;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top