Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 159 for Verifying (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[verifying-dependencies]]
    = Verifying dependencies
    
    Working with external dependencies and plugins published on third-party repositories puts your build at risk.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/admission.go

    //
    //	# clusters refers to the remote service.
    //	clusters:
    //	- name: name-of-remote-imagepolicy-service
    //	  cluster:
    //	    certificate-authority: /path/to/ca.pem      # CA for verifying the remote service.
    //	    server: https://images.example.com/policy # URL of remote service to query. Must use 'https'.
    //
    //	# users refers to the API server's webhook configuration.
    //	users:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      static Thread startThread(Runnable runnable) {
        Thread thread = new Thread(runnable);
        thread.setDaemon(true);
        thread.start();
        return thread;
      }
    
      /**
       * Generates a test case verifying that calling any enterXxx, tryEnterXxx, or waitForXxx method
       * with a guard that doesn't match the monitor produces an IllegalMonitorStateException.
       */
      private static TestCase generateGuardWithWrongMonitorTestCase(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                            public BuildOperationDescriptor.Builder description() {
                                return BuildOperationDescriptor.displayName("Dependency verification")
                                    .progressDisplayName("Verifying " + ve.artifact);
                            }
                        });
                    }
                }
            });
    
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    			Name: "etcd_request_duration_seconds",
    			Help: "Etcd request latency in seconds for each operation and object type.",
    			// Etcd request latency in seconds for each operation and object type.
    			// This metric is used for verifying etcd api call latencies SLO
    			// keep consistent with apiserver metric 'requestLatencies' in
    			// staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/dashboard_test.go

    						if !cl.IsPrimary() && d.requirePrimary {
    							// Skip verification of dashboards that won't be present on non primary(remote) clusters.
    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    						cm, err := cl.Kube().CoreV1().ConfigMaps(ist.Settings().TelemetryNamespace).Get(
    							context.TODO(), d.configmap, metav1.GetOptions{})
    						if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

        %ret = "some_dialect.some_op"() : () -> tensor<f32>
        func.return %ret : tensor<f32>
      }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      // Sanity-check that we are verifying tf_saved_model.index_path attributes
      // on results as well. The underlying verification logic is shared,
      // so no need to test all error cases.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  8. src/net/ip_test.go

    func TestIPAddrFamily(t *testing.T) {
    	for _, tt := range ipAddrFamilyTests {
    		if af := tt.in.To4() != nil; af != tt.af4 {
    			t.Errorf("verifying IPv4 address family for %q = %v, want %v", tt.in, af, tt.af4)
    		}
    		if af := len(tt.in) == IPv6len && tt.in.To4() == nil; af != tt.af6 {
    			t.Errorf("verifying IPv6 address family for %q = %v, want %v", tt.in, af, tt.af6)
    		}
    	}
    }
    
    var ipAddrScopeTests = []struct {
    	scope func(IP) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
    
    func idnaASCII(v string) (string, error) {
    	// TODO: Consider removing this check after verifying performance is okay.
    	// Right now punycode verification, length checks, context checks, and the
    	// permissible character tests are all omitted. It also prevents the ToASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authenticator/config.go

    	ServiceAccountTokenGetter   serviceaccount.ServiceAccountTokenGetter
    	SecretsWriter               typedv1core.SecretsGetter
    	BootstrapTokenAuthenticator authenticator.Token
    	// ClientCAContentProvider are the options for verifying incoming connections using mTLS and directly assigning to users.
    	// Generally this is the CA bundle file used to authenticate client certificates
    	// If this value is nil, then mutual TLS is disabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top