Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 347 for JSpecify (0.13 sec)

  1. cluster/gce/config-test.sh

    # Firewalls and node templates are still created.
    KUBE_CREATE_NODES=${KUBE_CREATE_NODES:-true}
    
    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. src/os/types_windows.go

    	if err != nil {
    		return err
    	}
    
    	// Per https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-points-and-file-operations,
    	// “Applications that use the CreateFile function should specify the
    	// FILE_FLAG_OPEN_REPARSE_POINT flag when opening the file if it is a reparse
    	// point.”
    	//
    	// And per https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      tensorflow::GraphImportConfig specs;
      specs.upgrade_legacy = upgrade_legacy;
      specs.prune_unused_nodes = true;
    
      if (!select_user_tf_ops.empty() && !emit_select_tf_ops) {
        llvm::errs() << "You must specify `emit-select-tf-ops=true` when passing "
                        "`select-user-tf-ops` flag.";
        return kTrFailure;
      }
    
      std::unique_ptr<tensorflow::SavedModelBundle> bundle;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      aliases, so this function loads the SavedModel proto and adds the
      `function_aliases` field.
    
      Args:
        saved_model_dir: Path to the saved model directory.
        tags: A collection of tags to specify the meta graph.
        function_aliases: Function name -> function alias mapping.
      """
      loader = saved_model_loader.SavedModelLoader(saved_model_dir)
      meta_graph_def = loader.get_meta_graph_def_from_tags(tags)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      exit 1
    fi
    
    if [[ $# -lt 1 ]] && [[ "${local_binaries}" == "false" ]]; then
      usage
      exit 1
    fi
    
    if [[ "${master_upgrade}" == "false" ]] && [[ "${node_upgrade}" == "false" ]]; then
      echo "Can't specify both -M and -N" >&2
      exit 1
    fi
    
    # prompt if etcd storage media type isn't set unless using etcd2 when doing master upgrade
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                additionalData.asMap == [
                    'typeName' : 'org.gradle.api.DefaultTask',
                    'propertyName' : 'output',
                ]
            }
        }
    
        def "can specify null as an input property in ad-hoc task"() {
            buildFile << """
                task foo {
                    inputs.property("a", null).optional(true)
                    doLast {}
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. cmd/admin-handlers-pools.go

    		}
    	} else {
    		idx = globalEndpoints.GetPoolIdx(v)
    	}
    
    	if idx == -1 {
    		apiErr := toAdminAPIErr(ctx, errInvalidArgument)
    		apiErr.Description = fmt.Sprintf("specified pool '%s' not found, please specify a valid pool", v)
    		// We didn't find any matching pools, invalid input
    		writeErrorResponseJSON(ctx, w, apiErr, r.URL)
    		return
    	}
    
    	status, err := pools.Status(r.Context(), idx)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/apply.go

    				return err
    			}
    			return runApply(cmd.Flags(), flags, args)
    		},
    	}
    
    	// Register the common flags for apply and plan
    	addApplyPlanFlags(cmd.Flags(), flags.applyPlanFlags)
    	// Specify the valid flags specific for apply
    	cmd.Flags().BoolVarP(&flags.nonInteractiveMode, "yes", "y", flags.nonInteractiveMode, "Perform the upgrade and do not prompt for confirmation (non-interactive mode).")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		serviceAccounts := slices.Map(instances, func(p *v1.Pod) string {
    			return p.Spec.ServiceAccountName
    		})
    
    		// default traffic type if neither GatewayClass nor Gateway specify a type
    		trafficType := constants.ServiceTraffic
    
    		gatewayClass := ptr.OrEmpty(krt.FetchOne(ctx, GatewayClasses, krt.FilterKey(string(gateway.Spec.GatewayClassName))))
    		if gatewayClass == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val CI_ENVIRONMENT_VARIABLE = "CI"
        const val DEFAULT_PERFORMANCE_BASELINES = "defaultPerformanceBaselines"
        const val GRADLE_INSTALL_PATH = "gradle_installPath"
    
    
        /**
         * Specify the flaky test quarantine strategy:
         *
         * -PflakyTests=include: run all tests, including flaky tests.
         * -PflakyTests=exclude: run all tests, excluding flaky tests.
         * -PflakyTests=only: run flaky tests only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top