Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for bundles (0.63 sec)

  1. cmd/kubelet/app/server.go

    		tlsOptions.Config.ClientAuth = tls.RequestClientCert
    	}
    
    	return tlsOptions, nil
    }
    
    // setContentTypeForClient sets the appropriate content type into the rest config
    // and handles defaulting AcceptContentTypes based on that input.
    func setContentTypeForClient(cfg *restclient.Config, contentType string) {
    	if len(contentType) == 0 {
    		return
    	}
    	cfg.ContentType = contentType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	"encoding/binary"
    	"fmt"
    	"math/bits"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    	"sync"
    
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    )
    
    // This file handles all algorithms related to XCOFF files generation.
    // Most of them are adaptations of the ones in  cmd/link/internal/pe.go
    // as PE and XCOFF are based on COFF files.
    // XCOFF files generated are 64 bits.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    	m, _, p, _ := setupInProbeMode(t, []*pluginapi.Device{}, func(n string, d []pluginapi.Device) {}, socketName, pluginSocketName)
    	cleanup(t, m, p)
    }
    
    // Tests that the device plugin manager correctly handles registration and re-registration by
    // making sure that after registration, devices are correctly updated and if a re-registration
    // happens, we will NOT delete devices; and no orphaned devices left.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	ErrMissingContentLength = &ProtocolError{"missing ContentLength in HEAD response"}
    )
    
    func badStringError(what, val string) error { return fmt.Errorf("%s %q", what, val) }
    
    // Headers that Request.Write handles itself and should be skipped.
    var reqWriteExcludeHeader = map[string]bool{
    	"Host":              true, // not in Header map anyway
    	"User-Agent":        true,
    	"Content-Length":    true,
    	"Transfer-Encoding": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    func (c *typeConv) badStructPointerTypedef(name string, dt *dwarf.StructType) bool {
    	// Windows handle types can all potentially contain non-pointers.
    	// badVoidPointerTypedef handles the "void *" HANDLE type, but other
    	// handles are defined as
    	//
    	// struct <name>__{int unused;}; typedef struct <name>__ *name;
    	//
    	// by the DECLARE_HANDLE macro in STRICT mode. The macro is declared in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	// delete if the existing object has no grace period or a grace period of 0
    	return oldMeta.GetDeletionGracePeriodSeconds() == nil || *oldMeta.GetDeletionGracePeriodSeconds() == 0
    }
    
    // deleteWithoutFinalizers handles deleting an object ignoring its finalizer list.
    // Used for objects that are either been finalized or have never initialized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    			}
    			return madmin.AccountDisabled
    		}(),
    		MemberOf:  cache.iamUserGroupMemberships[name].ToSlice(),
    		UpdatedAt: pl.UpdatedAt,
    	}, nil
    }
    
    // PolicyMappingNotificationHandler - handles updating a policy mapping from storage.
    func (store *IAMStoreSys) PolicyMappingNotificationHandler(ctx context.Context, userOrGroup string, isGroup bool, userType IAMUserType) error {
    	if userOrGroup == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. plugin/pkg/admission/resourcequota/admission_test.go

    		t.Errorf("Expected error but got none")
    	}
    
    	if len(kubeClient.Actions()) != 0 {
    		t.Errorf("Expected no client action on dry-run")
    	}
    }
    
    // TestAdmitHandlesOldObjects verifies that admit handles updates correctly with old objects
    func TestAdmitHandlesOldObjects(t *testing.T) {
    	// in this scenario, the old quota was based on a service type=loadbalancer
    	resourceQuota := &corev1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    				return true
    			}
    		}
    		return false
    	case OpAnyCharNotNL:
    		return r != '\n'
    	case OpAnyChar:
    		return true
    	}
    	return false
    }
    
    // parseVerticalBar handles a | in the input.
    func (p *parser) parseVerticalBar() {
    	p.concat()
    
    	// The concatenation we just parsed is on top of the stack.
    	// If it sits above an opVerticalBar, swap it below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	startTime := nanotime()
    
    	mp := acquirem()
    	mp.preemptoff = "gcing"
    	mp.traceback = 2
    	curgp := mp.curg
    	// N.B. The execution tracer is not aware of this status
    	// transition and handles it specially based on the
    	// wait reason.
    	casGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollection)
    
    	// Run gc on the g0 stack. We do this so that the g stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top