Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 238 for findMin (0.15 sec)

  1. pkg/volume/util/device_util_linux_test.go

    	disk, err := findDeviceForPath("/dev/sde", io)
    	if err != nil {
    		t.Fatalf("error finding device for path /dev/sde:%v", err)
    	}
    	if disk != "sde" {
    		t.Fatalf("disk [%s] didn't match expected sde", disk)
    	}
    	disk, err = findDeviceForPath("/returns/a/dev", io)
    	if err != nil {
    		t.Fatalf("error finding device for path /returns/a/dev:%v", err)
    	}
    	if disk != "sde" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  2. buildscripts/checkdeps.sh

    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. .github/workflows/codeql-analysis.yml

            # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
            language: ['java', 'javascript']
            # Learn more...
            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

      ASSERT_THAT(exported_model->graph_def().node(), SizeIs(2));
    
      // Match the `_Arg` node that corresponds to the argument of @main.
      const auto arg_node_itr =
          llvm::find_if(exported_model->graph_def().node(),
                        [](const NodeDef& node) { return node.op() == "_Arg"; });
      ASSERT_NE(arg_node_itr, exported_model->graph_def().node().end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util_test.cc

      GraphDef graph_def;
      TF_EXPECT_OK(builder.ToGraphDef(&graph_def));
      std::unique_ptr<Graph> graph(new Graph(flib_def_.get()));
      TF_CHECK_OK(GraphDefBuilderToGraph(builder, graph.get()));
    
      auto while_node_it = std::find_if(
          graph->nodes().begin(), graph->nodes().end(),
          [&](const Node* n) { return n->name() == kFunctionalWhileNodeName; });
      EXPECT_NE(while_node_it, graph->nodes().end());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedNodeFixture.java

         * Specifies different formats for reporting a failure of {@link #assertOutputContains(String)}.
         */
        public enum ComparisonFailureFormat {
            /**
             * The new format, which should be aide in quickly finding small differences for comparisons spanning multiple lines.
             */
            LINEWISE,
    
            /**
             * GitHub Patch format.  This is the format used by the GitHub diff viewer.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/ld.go

    				log.Fatalf("%s:%d: invalid modinfo: %v", file, lineNum, err)
    			}
    			addstrdata1(ctxt, "runtime.modinfo="+s)
    		}
    	}
    }
    
    func pkgname(ctxt *Link, lib string) string {
    	return path.Clean(lib)
    }
    
    func findlib(ctxt *Link, lib string) (string, bool) {
    	name := path.Clean(lib)
    
    	var pname string
    	isshlib := false
    
    	if ctxt.linkShared && ctxt.PackageShlib[name] != "" {
    		pname = ctxt.PackageShlib[name]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

            # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
            language: ['java']
            # Learn more...
            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  9. src/os/path.go

    	}
    
    	// Slow path: make sure parent exists and then call Mkdir for path.
    
    	// Extract the parent folder from path by first removing any trailing
    	// path separator and then scanning backward until finding a path
    	// separator or reaching the beginning of the string.
    	i := len(path) - 1
    	for i >= 0 && IsPathSeparator(path[i]) {
    		i--
    	}
    	for i >= 0 && !IsPathSeparator(path[i]) {
    		i--
    	}
    	if i < 0 {
    		i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo.go

    		// consumer — gets to determine the module's path
    		//
    		// r.findDir verifies both of these conditions. Execute it now so that
    		// r.Stat will correctly return a notExistError if the go.mod location or
    		// declared module path doesn't match.
    		_, _, _, err := r.findDir(ctx, v)
    		if err != nil {
    			// TODO: It would be nice to return an error like "not a module".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top