Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 190 for Storep (0.16 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    }
    
    var dwtypes dwarf.DWDie
    
    // newattr attaches a new attribute to the specified DIE.
    //
    // FIXME: at the moment attributes are stored in a linked list in a
    // fairly space-inefficient way -- it might be better to instead look
    // up all attrs in a single large table, then store indices into the
    // table in the DIE. This would allow us to common up storage for
    // attributes that are shared by many DIEs (ex: byte size of N).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	if err := pl.foreachPodResourceClaim(pod, func(_ string, claim *resourcev1alpha2.ResourceClaim) {
    		// We store the pointer as returned by the lister. The
    		// assumption is that if a claim gets modified while our code
    		// runs, the cache will store a new pointer, not mutate the
    		// existing object that we point to here.
    		claims = append(claims, claim)
    	}); err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	CertOpenSystemStore(hprov Handle, name *uint16) (store Handle, err error) = crypt32.CertOpenSystemStoreW
    //sys	CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32, cryptProv uintptr, flags uint32, para uintptr) (handle Handle, err error) = crypt32.CertOpenStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    		unschedulableRecorder: unschedulableRecorder,
    		gatedRecorder:         gatedRecorder,
    	}
    }
    
    // nominator is a structure that stores pods nominated to run on nodes.
    // It exists because nominatedNodeName of pod objects stored in the structure
    // may be different than what scheduler has here. We should be able to find pods
    // by their UID and update/delete them.
    type nominator struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal.go

    	}
    }
    
    // storeScaleEvent stores (adds or replaces outdated) scale event.
    // outdated events to be replaced were marked as outdated in the `markScaleEventsOutdated` function
    func (a *HorizontalController) storeScaleEvent(behavior *autoscalingv2.HorizontalPodAutoscalerBehavior, key string, prevReplicas, newReplicas int32) {
    	if behavior == nil {
    		return // we should not store any event as they will not be used
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    				writeErrorResponse(ctx, w, exportError(ctx, err, iamFile, ""), r.URL)
    				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)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. cmd/iam.go

    	}
    
    	loadUserCalled := false
    	select {
    	case <-sys.configLoaded:
    	default:
    		sys.store.LoadUser(ctx, name)
    		loadUserCalled = true
    	}
    
    	userInfo, err := sys.store.GetUserInfo(name)
    	if err == errNoSuchUser && !loadUserCalled {
    		sys.store.LoadUser(ctx, name)
    		userInfo, err = sys.store.GetUserInfo(name)
    	}
    	return userInfo, err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK: return %[[CLUSTER_RES]]#0
      func.return %1 : tensor<*xi32>
    }
    
    // -----
    
    // Tests that resource ops with both load and store are hoisted
    // but input to load and output from store have mixed defined/undefined shapes.
    
    // CHECK-LABEL: func @same_resource_load_and_store_cast
    func.func @same_resource_load_and_store_cast() -> tensor<1xi32> {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	}
    	return err
    }
    
    // ParseMultipartForm parses a request body as multipart/form-data.
    // The whole request body is parsed and up to a total of maxMemory bytes of
    // its file parts are stored in memory, with the remainder stored on
    // disk in temporary files.
    // ParseMultipartForm calls [Request.ParseForm] if necessary.
    // If ParseForm returns an error, ParseMultipartForm returns it but also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	podLister         corelisters.PodLister
    	podInformerSynced cache.InformerSynced
    	kubeClient        clientset.Interface
    
    	// This timestamp is to be used instead of LastProbeTime stored in Condition. We do this
    	// to avoid the problem with time skew across the cluster.
    	now func() metav1.Time
    
    	enterPartialDisruptionFunc func(nodeNum int) float32
    	enterFullDisruptionFunc    func(nodeNum int) float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top