Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for findMin (0.32 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryTasksCollectionTest.groovy

            def copyTask = Mock(Copy)
            when:
            tasks.add(copyTask)
    
            then:
            tasks.findSingleTaskWithType(Copy) == copyTask
        }
    
        def "fails finding single task with type where multiple exist"() {
            def copyTask1 = Mock(Copy)
            def copyTask2 = Mock(Copy)
            when:
            tasks.add(copyTask1)
            tasks.add(copyTask2)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_clean_cache.txt

    ! exists ../replaced/test.out  # BUG: should still exist
    
    # 'go clean -modcache' should not download anything before cleaning.
    go mod edit -require rsc.io/quote@v1.99999999.0-not-a-real-version
    go clean -modcache
    ! stderr 'finding rsc.io'
    go mod edit -droprequire rsc.io/quote
    
    ! go clean -modcache m
    stderr 'go: clean -modcache cannot be used with package arguments'
    
    -- go.mod --
    module m
    -- m.go --
    package m
    
    -- r/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. src/os/exec/dot_test.go

    						}
    					}
    
    					_, err := LookPath("execabs-test")
    					if errdot == "1" {
    						if err == nil {
    							t.Fatalf("LookPath didn't fail when finding a non-relative path")
    						} else if !errors.Is(err, ErrDot) {
    							t.Fatalf("LookPath returned unexpected error: want Is ErrDot, got %q", err)
    						}
    					} else {
    						if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/settings.md

    Hello Wade Wilson from Python
    
    // Die Umgebungsvariable existiert danach nicht mehr
    $ python main.py
    
    Hello World from Python
    ```
    
    </div>
    
    !!! tip "Tipp"
        Weitere Informationen dazu finden Sie unter <a href="https://12factor.net/config" class="external-link" target="_blank">The Twelve-Factor App: Config</a>.
    
    ### Typen und Validierung
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. hack/update-codegen.sh

    }
    
    # Generate a list of all files that have a `+k8s:` comment-tag.  This will be
    # used to derive lists of files/dirs for generation tools.
    if [[ "${DBG_CODEGEN}" == 1 ]]; then
        kube::log::status "DBG: finding all +k8s: tags"
    fi
    ALL_K8S_TAG_FILES=()
    kube::util::read-array ALL_K8S_TAG_FILES < <(
        git_grep -l \
            -e '^// *+k8s:'                `# match +k8s: tags` \
            -- \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. .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)
  9. 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)
  10. 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)
Back to top