Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for Parses (0.22 sec)

  1. cmd/kubelet/app/server.go

    		DisableFlagParsing: true,
    		SilenceUsage:       true,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			// initial flag parse, since we disable cobra's flag parsing
    			if err := cleanFlagSet.Parse(args); err != nil {
    				return fmt.Errorf("failed to parse kubelet flag: %w", err)
    			}
    
    			// check if there are non-flag arguments in the command line
    			cmds := cleanFlagSet.Args()
    			if len(cmds) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    }
    
    // Find the compilation device from system device with `DEVICE_CPU` as its
    // type.
    std::string GetTPUCompilationDevice(ParsedDevice system_device) {
      // TODO(b/110910013) GetTPUSystemDevices parses the spec and returns the
      // TPU_SYSTEM device, which we replace with the CPU device. We do this
      // replacement because we want to place the `tf._TPUCompileMlir` explicitly on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. pkg/kubelet/container/runtime.go

    	return name + "_" + namespace
    }
    
    // ParsePodFullName parsed the pod full name.
    func ParsePodFullName(podFullName string) (string, string, error) {
    	parts := strings.Split(podFullName, "_")
    	if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
    		return "", "", fmt.Errorf("failed to parse the pod full name %q", podFullName)
    	}
    	return parts[0], parts[1], nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

                                 llvm::cl::desc("Enable Cluster Formation pass."),
                                 llvm::cl::init(false)};
    };
    
    // Propagates the pass manager with the passes involved in transforming or
    // optimizing an MLIR graph without any target specialization.
    // NOLINTNEXTLINE - MLIR contract is pass by mutable reference.
    void CreateTFStandardPipeline(OpPassManager& pm,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    }
    
    func (d *PolicyDoc) update(p policy.Policy) {
    	now := UTCNow().Round(time.Millisecond)
    	d.UpdateDate = now
    	if d.CreateDate.IsZero() {
    		d.CreateDate = now
    	}
    	d.Policy = p
    }
    
    // parseJSON parses both the old and the new format for storing policy
    // definitions.
    //
    // The on-disk format of policy definitions has changed (around early 12/2021)
    // from policy.Policy to PolicyDoc. To avoid a migration, loading supports
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. cmd/iam.go

    }
    
    // GetRolePolicy - returns policies associated with a role ARN.
    func (sys *IAMSys) GetRolePolicy(arnStr string) (arn.ARN, string, error) {
    	roleArn, err := arn.Parse(arnStr)
    	if err != nil {
    		return arn.ARN{}, "", fmt.Errorf("RoleARN parse err: %v", err)
    	}
    	rolePolicy, ok := sys.rolesMap[roleArn]
    	if !ok {
    		return arn.ARN{}, "", fmt.Errorf("RoleARN %s is not defined.", arnStr)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    		wf, err := modload.ReadWorkFile(gowork)
    		if err == nil && modload.UpdateWorkGoVersion(wf, modload.MainModules.GoVersion()) {
    			modload.WriteWorkFile(gowork, wf)
    		}
    	}
    }
    
    // parseArgs parses command-line arguments and reports errors.
    //
    // The command-line arguments are of the form path@version or simply path, with
    // implicit @upgrade. path@none is "downgrade away".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            CommandLineParser parser = new CommandLineParser();
            FileCollectionFactory fileCollectionFactory = TestFiles.fileCollectionFactory();
            BuildEnvironmentConfigurationConverter buildEnvironmentConfigurationConverter = new BuildEnvironmentConfigurationConverter(new BuildLayoutFactory(), fileCollectionFactory);
            buildEnvironmentConfigurationConverter.configure(parser);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    			// you can imagine this happening in cases where a container failed and the kubelet didn't ask about it in time to see the result.
    			// in this case, the container should not to into waiting state immediately because that can make cases like runonce pods actually run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	}
    	// clang is too smart about command-line arguments
    	if b.gccSupportsFlag(compiler, "-Qunused-arguments") {
    		a = append(a, "-Qunused-arguments")
    	}
    
    	// zig cc passes --gc-sections to the underlying linker, which then causes
    	// undefined symbol errors when compiling with cgo but without C code.
    	// https://github.com/golang/go/issues/52690
    	if b.gccSupportsFlag(compiler, "-Wl,--no-gc-sections") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top