Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 778 for verified$ (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                        LOGGER.debug("Version listing in dynamic revision cache is expired: will perform fresh resolve of '{}' in '{}'", requested, delegate.getName());
                    } else {
                        // When age == 0, verified since the start of this build, assume listing hasn't changed
                        boolean authoritative = cachedModuleVersionList.getAge().toMillis() == 0;
                        result.listed(versionList);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/SignatureVerificationFailure.java

                    sb.append("but signature didn't match");
                    break;
                case MISSING_KEY:
                    sb.append("but it wasn't found in any key server so it couldn't be verified");
                    break;
            }
        }
    
        public enum FailureKind {
            PASSED_NOT_TRUSTED,
            FAILED,
            IGNORED_KEY,
            MISSING_KEY
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. samples/security/spire/README.md

      ```bash
      $ kubectl apply -f spire-quickstart.yaml
      ```
    
    1. Ensure that the deployment is completed before moving to the next step. This can be verified by waiting on the `spire-agent` pod to become ready:
    
      ```bash
      $ kubectl wait pod --for=condition=ready -n spire -l app=spire-agent
      ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/preflight.go

    			UnsupportedPlugins = append(UnsupportedPlugins, unsup.ToString())
    		}
    		fmt.Println("[preflight] The corefile contains plugins that kubeadm/CoreDNS does not know how to migrate. " +
    			"Each plugin listed should be manually verified for compatibility with the newer version of CoreDNS. " +
    			"Once ready, the upgrade can be initiated by skipping the preflight check. During the upgrade, " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/unicode/utf16/utf16.go

    // Package utf16 implements encoding and decoding of UTF-16 sequences.
    package utf16
    
    // The conditions replacementChar==unicode.ReplacementChar and
    // maxRune==unicode.MaxRune are verified in the tests.
    // Defining them locally avoids this package depending on package unicode.
    
    const (
    	replacementChar = '\uFFFD'     // Unicode replacement character
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	"k8s.io/utils/ptr"
    )
    
    // The objects that define an apiserver's initial behavior.  The
    // registered defaulting procedures make no changes to these
    // particular objects (this is verified in the unit tests of the
    // internalbootstrap package; it can not be verified in this package
    // because that would require importing k8s.io/kubernetes).
    var (
    	MandatoryPriorityLevelConfigurations = []*flowcontrol.PriorityLevelConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. operator/pkg/verifier/verifier.go

    		kclient:          client,
    	}
    
    	for _, opt := range options {
    		opt(&verifier)
    	}
    
    	return &verifier, nil
    }
    
    func (v *StatusVerifier) Colorize() {
    	v.successMarker = color.New(color.FgGreen).Sprint(v.successMarker)
    	v.failureMarker = color.New(color.FgRed).Sprint(v.failureMarker)
    }
    
    // Verify implements Verifier interface. Here we check status of deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/crypto/ed25519/ed25519vectors_test.go

    		message := []byte(v.M)
    
    		didVerify := ed25519.Verify(publicKey, message, signature)
    		if didVerify && !expectedToVerify {
    			t.Errorf("#%d: vector with flags %s unexpectedly verified", i, v.Flags)
    		}
    		if !didVerify && expectedToVerify {
    			t.Errorf("#%d: vector with flags %s unexpectedly rejected", i, v.Flags)
    		}
    	}
    }
    
    func downloadEd25519Vectors(t *testing.T) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. hack/verify-vendor.sh

      popd >/dev/null 2>&1
    done
    pushd "${_kubetmp}" >/dev/null 2>&1
      echo "Tidying k8s.io/kubernetes..."
      GODEBUG=gocacheverify=1 go mod tidy
    popd >/dev/null 2>&1
    
    echo "Vendor Verified."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/compress/zlib/reader.go

    		z.err = ErrChecksum
    		return n, z.err
    	}
    	return n, io.EOF
    }
    
    // Calling Close does not close the wrapped [io.Reader] originally passed to [NewReader].
    // In order for the ZLIB checksum to be verified, the reader must be
    // fully consumed until the [io.EOF].
    func (z *reader) Close() error {
    	if z.err != nil && z.err != io.EOF {
    		return z.err
    	}
    	z.err = z.decompressor.Close()
    	return z.err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top