Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,783 for look (0.05 sec)

  1. src/cmd/compile/internal/ssa/shortcircuit.go

    }
    
    // shortcircuitBlock checks for a CFG in which an If block
    // has as its control value a Phi that has a ConstBool arg.
    // In some such cases, we can rewrite the CFG into a flatter form.
    //
    // (1) Look for a CFG of the form
    //
    //	p   other pred(s)
    //	 \ /
    //	  b
    //	 / \
    //	t   other succ
    //
    // in which b is an If block containing a single phi value with a single use (b's Control),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    ----
    $ gradle init --type java-application  --dsl groovy
    ----
    =====
    
    Select defaults for any additional prompts.
    
    NOTE: In this tutorial, all examples are macOS based.
    
    When you are done, the directory should look as follows:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    .
    ├── .gradle                 // <1>
    │   ├── libs.version.toml   // <2>
    │   └── ⋮
    ├── gradle                  // <3>
    │   └── wrapper
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

                            addSdk(sdkDir, version, name);
                        } else {
                            LOGGER.debug("Ignoring candidate Windows SDK directory {} as it does not look like a Windows SDK installation.", sdkDir);
                        }
                    } catch (MissingRegistryEntryException e) {
                        // Ignore the subkey if it doesn't have a folder and version
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                problem("Build file 'sub/sub-a/build.gradle': line 2: Project ':sub:sub-a' cannot dynamically look up a property in the parent project ':sub'")
                problem("Build file 'sub/sub-b/build.gradle': line 2: Project ':sub:sub-b' cannot dynamically look up a property in the parent project ':sub'")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    == Step 2. Understanding Project Dependencies
    Gradle provides excellent support for dependency management and automation.
    
    Let's take another look at our build script (the `build.gradle(.kts)` file), specifically the following section:
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    repositories {
        // Use Maven Central for resolving dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pkg/util/iptree/iptree.go

    	// mask the address for sanity
    	address := prefix.Masked().Addr()
    	// we can't check longer than the request mask
    	mask := prefix.Bits()
    	// walk the network bits of the prefix
    	for bitPosition < mask {
    		// Look for a child checking the bit position after the mask
    		n = n.child[getBitFromAddr(address, bitPosition+1)]
    		if n == nil {
    			return zeroT, false
    		}
    		// check we are in the right branch comparing the suffixes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds and configures a repository which will look for dependencies in a number of local directories.
         *
         * @param action The action to execute to configure the repository.
         * @return The repository.
         */
        FlatDirectoryArtifactRepository flatDir(Action<? super FlatDirectoryArtifactRepository> action);
    
        /**
         * Adds a repository which looks in Gradle Central Plugin Repository for dependencies.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

                }
            """
    
            when:
            // looks for the Maven pom file because it's a snapshot
            snapshotModule.metaData.expectGet() // gets the maven-metadata.xml file to get the latest snapshot version
            snapshotModule.pom.expectGet()
            snapshotModule.artifact.expectGet()
    
            // but doesn't look for the release because it's not a snapshot
            release.ivy.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  9. cmd/utils_test.go

    	res := jsonResult{}
    	if err = json.Unmarshal([]byte(strings.ReplaceAll(jsonReq, "%%", "%")), &res); err != nil {
    		t.Fatal(err)
    	}
    
    	// Look for expected method.
    	if res.Method != http.MethodGet {
    		t.Fatalf("Unexpected method %s, expected 'GET'", res.Method)
    	}
    
    	// Look for expected query values
    	expectedQuery := url.Values{}
    	expectedQuery.Set("prefix", "Hello*World*")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/net/http/pprof/pprof.go

    //
    // # Usage examples
    //
    // Use the pprof tool to look at the heap profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/heap
    //
    // Or to look at a 30-second CPU profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/profile?seconds=30
    //
    // Or to look at the goroutine blocking profile, after calling
    // [runtime.SetBlockProfileRate] in your program:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top