Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for checkset (0.41 sec)

  1. pilot/pkg/bootstrap/server_test.go

    				if istiodCert, err := s.getIstiodCertificate(nil); istiodCert == nil || err != nil {
    					t.Errorf("Istiod failed to generate new DNS cert")
    				}
    			} else {
    				if len(c.expCert) != 0 {
    					if !checkCert(t, s, c.expCert, c.expKey) {
    						t.Errorf("Istiod certificate does not match the expectation")
    					}
    				} else {
    					if _, err := s.getIstiodCertificate(nil); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [listing]
    ----
    name: Build Gradle project
    
    on:
      push:
    
    jobs:
      build-gradle-project:
        runs-on: ubuntu-latest
        steps:
        - name: Checkout project sources
          uses: actions/checkout@v4
    
        - name: Setup Gradle
          uses: gradle/actions/setup-gradle@v3
          with:
            build-scan-publish: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcs/vcs.go

    	if i < 0 {
    		return Status{}, errFossilInfo
    	}
    	checkout = strings.TrimSpace(checkout[:i])
    
    	i = strings.IndexByte(checkout, ' ')
    	if i < 0 {
    		return Status{}, errFossilInfo
    	}
    	rev := checkout[:i]
    
    	commitTime, err := time.ParseInLocation(time.DateTime, checkout[i+1:], time.UTC)
    	if err != nil {
    		return Status{}, fmt.Errorf("%v: %v", errFossilInfo, err)
    	}
    
    	// Also look for untracked changes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

            } catch (Exception ex) {
                if (LOGGER.isDebugEnabled()) {
                    LOGGER.warn("Cannot upload checksum for " + content.getName() + " because the remote repository doesn't support " + algorithm + ". This will not fail the build.", ex);
                } else {
                    LOGGER.warn("Cannot upload checksum for " + content.getName() + " because the remote repository doesn't support " + algorithm + ". This will not fail the build.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/rangefunc/rewrite.go

    			},
    		},
    	}
    	setPos(call, start)
    
    	// Build checks based on #next after X(bodyFunc)
    	checks := r.checks(loop, end)
    
    	// Rewrite for vars := range X { ... } to
    	//
    	//	{
    	//		r.declStmt
    	//		call
    	//		checks
    	//	}
    	//
    	// The r.declStmt can be added to by this loop or any inner loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. internal/hash/reader_test.go

    	}
    }
    
    // Tests hash reader checksum verification.
    func TestHashReaderVerification(t *testing.T) {
    	testCases := []struct {
    		desc              string
    		src               io.Reader
    		size              int64
    		actualSize        int64
    		md5hex, sha256hex string
    		err               error
    	}{
    		0: {
    			desc:       "Success, no checksum verification provided.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. cluster/gce/upgrade.sh

      local -r checkSHA=$(sha256sum "${download_dir}/corefile-tool-${host_arch}" | cut -d " " -f 1)
      if [[ "${checkSHA}" != "${corefile_tool_SHA}" ]]; then
        echo "!!! CheckSum for the CoreDNS migration tool did not match !!!" >&2
        exit 1
      fi
    
      chmod +x "${download_dir}/corefile-tool-${host_arch}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                for ( int i = 0; i < KerberosConstants.CHECKSUM_SIZE; i++ )
                    if ( plainDataChecksum[ i ] != data[ i ] )
                        throw new GeneralSecurityException("Checksum failed while decrypting.");
    
            int decryptLength = plainData.length - KerberosConstants.CONFOUNDER_SIZE;
            decrypt = new byte[decryptLength];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// of the form TagPrefix + a valid semver version.
    	// If the matching repo tags and their commit hashes still hash to TagSum,
    	// the Origin is still valid (at least as far as the tags are concerned).
    	// The exact checksum is up to the Repo implementation; see (*gitRepo).Tags.
    	TagPrefix string `json:",omitempty"`
    	TagSum    string `json:",omitempty"`
    
    	// If Ref is non-empty, then the resolution of this module version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

           * which we don't support anyway.
           */
          return nextIndex >= 0;
        }
    
        /**
         * Checks whether nextIndex is valid; if so setting nextItem. Stops iterator when either hits
         * putIndex or sees null item.
         */
        private void checkNext() {
          if (nextIndex == putIndex) {
            nextIndex = -1;
            nextItem = null;
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top