Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 169 for Discovered (0.18 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    		pass:      pass,
    	}
    
    	// Pass 2. Build CFGs.
    
    	// Build CFGs for named functions.
    	// Cycles in the static call graph are broken
    	// arbitrarily but deterministically.
    	// We create noReturn facts as discovered.
    	for _, fn := range decls {
    		c.buildDecl(fn, funcDecls[fn])
    	}
    
    	// Build CFGs for literal functions.
    	// These aren't relevant to facts (since they aren't named)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	cB := c1
    	b := bucket[cB]
    	sa[b] = int64(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j == 0 {
    			// Skip empty entry.
    			continue
    		}
    		if j < 0 {
    			// Leave discovered type-S index for caller.
    			sa[i] = int64(-j)
    			continue
    		}
    		sa[i] = 0
    
    		// Index j was on work queue, meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. docs/sts/keycloak.md

    2018/12/26 17:49:36 listening on http://localhost:8888/
    ```
    
    This will open the login page of keycloak, upon successful login, STS credentials along with any buckets discovered using the credentials will be printed on the screen, for example:
    
    ```
    {
      "buckets": [
        "bucket-x"
      ],
      "credentials": {
        "AccessKeyID": "6N2BALX7ELO827DXS3GK",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                        action(outputStream ->
                            // delay obtaining contents to account for descriptor changes
                            // (for instance, due to modules discovered)
                            descriptor.writeTo(new OutputStreamWriter(outputStream))
                        )
                    );
                }
    
                return null;
            }));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

             </artifact>
          </component>
       </components>
    </verification-metadata>
    """
            and:
            output.contains("""A verification file was generated but some problems were discovered:
       - some keys couldn't be downloaded. They were automatically added as ignored keys but you should review if this is acceptable. Look for entries with the following comment: Key couldn't be downloaded from any key server
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

                    compositeSubstitute()
                    configuration = "runtimeElements"
                }
                module("org.test:b2:1.0")
            }
        }
    
        def "can combine included builds with declared and discovered substitutions"() {
            given:
            dependency "org.test:b1:1.0"
            dependency "org.test:XXX:1.0"
    
            includeBuild buildB
            includeBuild buildC, """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java

    import org.eclipse.aether.resolution.VersionRangeResult;
    
    /**
     * A model resolver to assist building of dependency POMs. This resolver gives priority to those repositories that have
     * been initially specified and repositories discovered in dependency POMs are recessively merged into the search chain.
     *
     * @see DefaultArtifactDescriptorReader
     */
    class DefaultModelResolver implements ModelResolver {
    
        private final RepositorySystemSession session;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_ppc64x.s

    #ifndef GOPPC64_power9
    #define ADJUST_FOR_CNTLZW -16
    #else
    #define ADJUST_FOR_CNTLZW 0
    #endif
    
    // Now, find the index of the 16B vector the match was discovered in. If CNTLZW is used
    // to determine the offset into the 16B vector, it will overcount by 16. Account for it here.
    foundat3:
    	SUB	R3,R8,R3
    	ADD	$48+ADJUST_FOR_CNTLZW,R3
    	BR	vfound
    foundat2:
    	SUB	R3,R8,R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            then:
            1 * visitor.node("The specified installation directory '$sdkDir1' does not appear to contain a Windows SDK installation.")
        }
    
        def "fills in meta-data from registry for SDK discovered using the path"() {
            def sdkDir = sdkDir("sdk1")
    
            given:
            operatingSystem.findInPath("rc.exe") >> sdkDir.file("bin/rc.exe")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/runtime/runtime.go

    			strings.Join(foundCRISockets, ", "))
    	}
    }
    
    // DetectCRISocket uses a list of known CRI sockets to detect one. If more than one or none is discovered, an error is returned.
    func DetectCRISocket() (string, error) {
    	return detectCRISocketImpl(isExistingSocket, defaultKnownCRISockets)
    }
    
    // SandboxImage returns the sandbox image used by the container runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top