Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for lake (0.04 sec)

  1. cmd/admin-handlers-users.go

    				return
    			}
    		case allUsersFile:
    			userIdentities := make(map[string]UserIdentity)
    			err := globalIAMSys.store.loadUsers(ctx, regUser, userIdentities)
    			if err != nil {
    				writeErrorResponse(ctx, w, exportError(ctx, err, iamFile, ""), r.URL)
    				return
    			}
    			userAccounts := make(map[string]madmin.AddOrUpdateUserReq)
    			for u, uid := range userIdentities {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nodeMonitorGracePeriod:      nodeMonitorGracePeriod,
    		nodeUpdateWorkerSize:        nodeUpdateWorkerSize,
    		zoneNoExecuteTainter:        make(map[string]*scheduler.RateLimitedTimedQueue),
    		nodesToRetry:                sync.Map{},
    		zoneStates:                  make(map[string]ZoneState),
    		evictionLimiterQPS:          evictionLimiterQPS,
    		secondaryEvictionLimiterQPS: secondaryEvictionLimiterQPS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	csectSymNb   uint64           // Symbol number for the current .csect
    	csectVAStart int64
    	csectVAEnd   int64
    }
    
    var (
    	currDwscnoff   = make(map[string]uint64) // Needed to create C_DWARF symbols
    	currSymSrcFile xcoffSymSrcFile
    	outerSymSize   = make(map[string]int64)
    )
    
    // xcoffUpdateOuterSize stores the size of outer symbols in order to have it
    // in the symbol table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	ref, err := kubecontainer.GenerateContainerRef(pod, container)
    	if err != nil {
    		klog.ErrorS(err, "Can't make a container ref", "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name)
    		return
    	}
    	eventMessage := message
    	if len(args) > 0 {
    		eventMessage = fmt.Sprintf(message, args...)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// - adds complexity (need to carefully sync state with informer events
    	//   for claims and ResourceSlices)
    	// - would make integration with cluster autoscaler harder because it would need
    	//   to trigger informer callbacks.
    	//
    	// When implementing cluster autoscaler support, this assume cache or
    	// something like it (see https://github.com/kubernetes/kubernetes/pull/112202)
    	// might have to be managed by the cluster autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    	ft := &factsTable{}
    	ft.orderS = f.newPoset()
    	ft.orderU = f.newPoset()
    	ft.orderS.SetUnsigned(false)
    	ft.orderU.SetUnsigned(true)
    	ft.facts = make(map[pair]relation)
    	ft.stack = make([]fact, 4)
    	ft.limits = make(map[ID]limit)
    	ft.limitStack = make([]limitFact, 4)
    	ft.zero = f.ConstInt64(f.Config.Types.Int64, 0)
    	return ft
    }
    
    // update updates the set of relations between v and w in domain d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    	// copy the imageList, we do not want to mutate it in-place and accidentally edit a test case
    	images := make([]kubecontainer.Image, len(imageList))
    	copy(images, imageList)
    	// sort images by size
    	sort.Sort(sliceutils.ByImageSize(images))
    	// convert to []v1.ContainerImage and truncate the list of names
    	expectedImages := make([]v1.ContainerImage, len(images))
    	for i := range images {
    		image := &images[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *    public List<X509Certificate> checkServerTrusted(
         *        X509Certificate[] chain, String authType, String host) throws CertificateException {
         *    }
         * ```
         *
         * This method works like [X509TrustManager.checkServerTrusted] but it receives the hostname of
         * the server as an extra parameter. Regardless of what checks this method performs, OkHttp will
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

        upgrading OkHttp. With this change it is now a regular Java class with
        enum-like constants. Application code that uses enum methods on cipher
        suites (`ordinal()`, `name()`, etc.) will break with this change.
    
     *  Fix: `CertificatePinner` now matches canonicalized hostnames. Previously
        this was case sensitive. This change should also make it easier to configure
        certificate pinning for internationalized domain names.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(rstStream.errorCode).isEqualTo(ErrorCode.CANCEL)
      }
    
      /**
       * When writing a set of headers fails due to an `IOException`, make sure the writer is left
       * in a consistent state so the next writer also gets an `IOException` also instead of
       * something worse (like an [IllegalStateException].
       *
       *
       * See https://github.com/square/okhttp/issues/1651
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top