Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for patching (0.17 sec)

  1. src/crypto/x509/x509_test.go

    		r := c.VerifyHostname(test.host) == nil
    		if r != test.ok {
    			t.Errorf("#%d mismatch got: %t want: %t when matching '%s' against '%s'", i, r, test.ok, test.host, test.pattern)
    		}
    	}
    }
    
    func TestMatchIP(t *testing.T) {
    	// Check that pattern matching is working.
    	c := &Certificate{
    		DNSNames: []string{"*.foo.bar.baz"},
    		Subject: pkix.Name{
    			CommonName: "*.foo.bar.baz",
    		},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    			expectedClusters:     []string{"BlackHoleCluster", "InboundPassthroughCluster", "PassthroughCluster", "outbound|8080||test.com"},
    		},
    		{
    			name:     "destination rule with wildcard matching hosts",
    			services: []*model.Service{testService1},
    			configs: []config.Config{{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.DestinationRule,
    					Name:             "test-desinationrule",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    				Name:                 "outbound|8080|v1|foo.example.com",
    				ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_STRICT_DNS},
    			}},
    		},
    		{
    			name:        "subset with labels in both, not matching",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_STRICT_DNS}},
    			clusterMode: DefaultClusterMode,
    			service: &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    					continue
    				}
    				select {
    				case <-ctx.Done():
    					return
    				case encodedCh <- append(grid.GetByteBuffer()[:0], buf.Bytes()...):
    				}
    			}
    		}
    	}()
    
    	// Collect from matching peers
    	for _, peer := range peers {
    		if peer == nil {
    			continue
    		}
    		if node == "" || strings.EqualFold(peer.host.Name, node) {
    			peer.ConsoleLog(ctx, logKind, encodedCh)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    		if err == nil {
    			t.Fatal("expecting back an error")
    		}
    		if !errors.Is(err, errTestScanWrap) {
    			t.Fatalf("errors.Is mismatch\n%v\nWant: %v", err, errTestScanWrap)
    		}
    		// Ensure that error substring matching still correctly works.
    		if !strings.Contains(err.Error(), errTestScanWrap.Error()) {
    			t.Fatalf("Error %v does not contain %v", err, errTestScanWrap)
    		}
    	}
    }
    
    type alwaysErrValuer struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              "name"
            ],
            "type": "object"
          },
          "io.k8s.api.autoscaling.v2.MetricSpec": {
            "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
            "properties": {
              "containerResource": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    // is a z pointer that starts out pointing at the strange magic byte list in
    // the Optab struct.  With each step past a non-matching ytable line, z
    // advances by the 4th entry in the line.  When a matching line is found, that
    // z pointer has the extra data to use in laying down the instruction bytes.
    // The actual bytes laid down are a function of the 3rd entry in the line (that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    		VersionID:         versionID,
    		MTime:             dobj.DeleteMarkerMTime.Time,
    		DeleteReplication: drs,
    		Versioned:         globalBucketVersioningSys.PrefixEnabled(bucket, dobj.ObjectName),
    		// Objects matching prefixes should not leave delete markers,
    		// dramatically reduces namespace pollution while keeping the
    		// benefits of replication, make sure to apply version suspension
    		// only at bucket level instead.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top