Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,001 for rfind (0.1 sec)

  1. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    stderr 'go: downloading go1.18beta2 '
    
    # go1.X is okay for path lookups
    env GOTOOLCHAIN=go1.20+path
    ! go version
    stderr 'go: cannot find "go1.20" in PATH'
    
    env GOTOOLCHAIN=go1.21+path
    ! go version
    stderr 'go: cannot find "go1.21" in PATH'
    
    env GOTOOLCHAIN=go1.22+path
    ! go version
    stderr 'go: cannot find "go1.22" in PATH'
    
    # When a toolchain download takes place, download 1.X.0
    env GOTOOLCHAIN=auto
    rm go.mod
    go mod init m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

        createTakk('do-stuff')
    """
            when:
            fails()
    
            then:
            failure.assertHasDescription("A problem occurred evaluating root project 'ProjectError'.")
                    .assertHasCause("Could not find method createTakk() for arguments [do-stuff] on root project 'ProjectError")
                    .assertHasFileName("Build file '$buildFile'")
                    .assertHasLineNumber(2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r44/ToolingApiEclipseModelSourceDirectoryOutputCrossVersionSpec.groovy

            buildFile << """
                apply plugin: 'java'
                apply plugin: 'eclipse'
    
                eclipse.classpath.file.whenMerged {
                    entries.find { entry -> entry.path == 'src/test/java' }.output = null
                    entries.find { entry -> entry.path == 'src/test/resources' }.output = 'out/test-resources'
                }
            """
    
            file('src/test/java').mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Use the https://github.com/gradle/gradle-profiler[Gradle Profiler] to find these kinds of bottlenecks.
    With the Gradle Profiler, you can define scenarios like "Running 'assemble' after making an ABI-breaking change"
    and run your build several times to collect profiling data.
    Use the Profiler to produce build scans. Or combine it with method profilers like JProfiler and YourKit.
    These profilers can help you find inefficient algorithms in custom plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            def allNames = project.modules*.name
            allNames.unique().size() == 6
    
            IdeaModule impl = project.modules.find { it.name == 'root-impl' }
            IdeaModule contribImpl = project.modules.find { it.name == 'contrib-impl' }
    
            impl.dependencies[0].targetModuleName == 'root-api'
            contribImpl.dependencies[0].targetModuleName == 'contrib-api'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

                    }
                }
            """
    
            when:
            succeeds "loadClasses"
    
            then:
            def lines = output.readLines()
            if (lines.find { it == noInfoHeading }) { return }
    
            lines.find { it == heading } // here for nicer output if the output isn't what we expect
            def headingIndex = lines.indexOf(heading)
            def classpathSize = Integer.parseInt(lines[headingIndex + 1])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/ztunnel/configdump/workload.go

    		if !strings.EqualFold(workload.Namespace, wf.Namespace) {
    			return false
    		}
    	}
    
    	if wf.Address != "" {
    		var find bool
    		for _, ip := range workload.WorkloadIPs {
    			if strings.EqualFold(ip, wf.Address) {
    				find = true
    				break
    			}
    		}
    		if !find {
    			return false
    		}
    	}
    	if wf.Node != "" && !strings.EqualFold(workload.Node, wf.Node) {
    		return false
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    using Source = PointerUnion<Operation *, BlockArgument *>;
    
    // We use union-find algorithm to build clusters of connected operations based
    // on the user provided policy. If an operation can be clustered (one of the
    // user provided policies accepts it under given constraints), it will become
    // a "member" that will participate in the union-find cluster construction.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/node_matchers_test.cc

        EXPECT_NE(explanation.find("ctrl_deps, which has 2 elements"),
                  std::string::npos);
        EXPECT_NE(explanation.find("does not match expected: is empty"),
                  std::string::npos);
      }
      {
        const std::string explanation =
            Explain(placeholder_d.node(), NodeWith(CtrlDeps(NodeWith())));
        EXPECT_NE(explanation.find("ctrl_deps"), std::string::npos);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                def task = testEvents.find {
                    it.jvmTestKind == JvmTestKind.SUITE &&
                        (it.parent instanceof TaskOperationDescriptor) &&
                        it.parent.taskPath == path
                }
                if (task == null) {
                    throw new AssertionError("Expected to find a test task $path but none was found")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top