Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,606 for nmatch (0.17 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ALPN-NoMatch

    Adam Langley <******@****.***> 1471477547 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:46:46 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  2. internal/config/batch/batch.go

    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package batch
    
    import (
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/pkg/v3/env"
    )
    
    // Batch job environment variables
    const (
    	ReplicationWorkersWait = "replication_workers_wait"
    	KeyRotationWorkersWait = "keyrotation_workers_wait"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/internal/trace/batch.go

    		if err != nil {
    			return batch{}, 0, err
    		}
    		exp = event.Experiment(e)
    	}
    
    	// Read the batch header: gen (generation), thread (M) ID, base timestamp
    	// for the batch.
    	gen, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch gen: %w", err)
    	}
    	m, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch M ID: %w", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	"k8s.io/apiserver/pkg/util/dryrun"
    	"k8s.io/component-base/tracing"
    )
    
    const (
    	// maximum number of operations a single json patch may contain.
    	maxJSONPatchOperations = 10000
    )
    
    // PatchResource returns a function that will handle a resource patch.
    func PatchResource(r rest.Patcher, scope *RequestScope, admit admission.Interface, patchTypes []string) http.HandlerFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/watch.go

    func Convert_v1_InternalEvent_To_v1_WatchEvent(in *InternalEvent, out *WatchEvent, s conversion.Scope) error {
    	return Convert_watch_Event_To_v1_WatchEvent((*watch.Event)(in), out, s)
    }
    
    func Convert_v1_WatchEvent_To_watch_Event(in *WatchEvent, out *watch.Event, s conversion.Scope) error {
    	out.Type = watch.EventType(in.Type)
    	if in.Object.Object != nil {
    		out.Object = in.Object.Object
    	} else if in.Object.Raw != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 18 03:02:16 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv12-ALPN-NoMatch

    Roland Shoemaker <******@****.***> 1612299510 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 06 18:57:43 UTC 2021
    - 985 bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv13-ALPN-NoMatch

    Filippo Valsorda <******@****.***> 1684776184 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. cmd/batch-job-common-types.go

    func (kv BatchJobKV) Empty() bool {
    	return kv.Key == "" && kv.Value == ""
    }
    
    // Match matches input kv with kv, value will be wildcard matched depending on the user input
    func (kv BatchJobKV) Match(ikv BatchJobKV) bool {
    	if kv.Empty() {
    		return true
    	}
    	if strings.EqualFold(kv.Key, ikv.Key) {
    		return wildcard.Match(kv.Value, ikv.Value)
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    }
    
    // WatchServer serves a watch.Interface over a websocket or vanilla HTTP.
    type WatchServer struct {
    	Watching watch.Interface
    	Scope    *RequestScope
    
    	// true if websocket messages should use text framing (as opposed to binary framing)
    	UseTextFraming bool
    	// the media type this watch is being served with
    	MediaType string
    	// used to frame the watch stream
    	Framer runtime.Framer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/batch.go

    	cj2c, err := cronjob.NewControllerV2(ctx, controllerContext.InformerFactory.Batch().V1().Jobs(),
    		controllerContext.InformerFactory.Batch().V1().CronJobs(),
    		controllerContext.ClientBuilder.ClientOrDie("cronjob-controller"),
    	)
    	if err != nil {
    		return nil, true, fmt.Errorf("creating CronJob controller V2: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top