Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 123 for volerr (0.11 sec)

  1. cmd/iam.go

    				if entityKeysInStorage.Contains(origKeys[i]) {
    					// Ignore any deletion error.
    					_, delErr := sys.PolicyDBSet(ctx, origKeys[i], "", stsUser, isGroup)
    					if delErr != nil {
    						logErr := fmt.Errorf("failed to delete extraneous LDAP DN mapping for `%s`: %w", origKeys[i], delErr)
    						iamLogIf(ctx, logErr)
    					}
    				}
    			}
    		}
    
    		// Replacing origKeys[0] with normKey in the policyMap
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. pkg/kubelet/lifecycle/handlers.go

    		Message: fmt.Sprintf("Cannot enforce AppArmor: %v", err),
    	}
    }
    
    func isHTTPResponseError(err error) bool {
    	if err == nil {
    		return false
    	}
    	urlErr := &url.Error{}
    	if !errors.As(err, &urlErr) {
    		return false
    	}
    	return strings.Contains(urlErr.Err.Error(), "server gave HTTP response to HTTPS client")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    		if err != nil {
    			return false, err
    		}
    
    		healthCheckError = kmsPluginHealthzCheck.Check(req)
    		return healthCheckError == nil, nil
    	})
    	if pollErr != nil {
    		return fmt.Errorf("health check for new transformers failed, polling error %v: %w", pollErr, healthCheckError)
    	}
    	klog.V(2).InfoS("Health check succeeded")
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/debugging.md

    Si vous l'exécutez avec :
    
    <div class="termy">
    
    ```console
    $ python myapp.py
    ```
    
    </div>
    
    alors la variable interne `__name__` de votre fichier, créée automatiquement par Python, aura pour valeur la chaîne de caractères `"__main__"`.
    
    Ainsi, la section :
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    va s'exécuter.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Mar 06 16:26:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/runtime/defs_solaris.go

    	O_WRONLY   = C.O_WRONLY
    	O_NONBLOCK = C.O_NONBLOCK
    	O_CREAT    = C.O_CREAT
    	O_TRUNC    = C.O_TRUNC
    	O_CLOEXEC  = C.O_CLOEXEC
    
    	POLLIN  = C.POLLIN
    	POLLOUT = C.POLLOUT
    	POLLHUP = C.POLLHUP
    	POLLERR = C.POLLERR
    
    	PORT_SOURCE_FD    = C.PORT_SOURCE_FD
    	PORT_SOURCE_ALERT = C.PORT_SOURCE_ALERT
    	PORT_ALERT_UPDATE = C.PORT_ALERT_UPDATE
    )
    
    type SemT C.sem_t
    
    type Sigset C.sigset_t
    type StackT C.stack_t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/net/rpc/server.go

    		return errors.New("rpc: service already defined: " + sname)
    	}
    	return nil
    }
    
    // suitableMethods returns suitable Rpc methods of typ. It will log
    // errors if logErr is true.
    func suitableMethods(typ reflect.Type, logErr bool) map[string]*methodType {
    	methods := make(map[string]*methodType)
    	for m := 0; m < typ.NumMethod(); m++ {
    		method := typ.Method(m)
    		mtype := method.Type
    		mname := method.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. src/crypto/x509/root_windows.go

    	if err != nil {
    		return nil, err
    	}
    	defer syscall.CertFreeCertificateChain(topCtx)
    
    	chain, topErr := verifyChain(c, topCtx, opts)
    	if topErr == nil {
    		chains = append(chains, chain)
    	}
    
    	if lqCtxCount := topCtx.LowerQualityChainCount; lqCtxCount > 0 {
    		lqCtxs := unsafe.Slice(topCtx.LowerQualityChains, lqCtxCount)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_plugin.go

    	_ volume.VolumeOptions) (volume.Mounter, error) {
    
    	volSrc, pvSrc, err := getSourceFromSpec(spec)
    	if err != nil {
    		return nil, err
    	}
    
    	var (
    		driverName   string
    		volumeHandle string
    		readOnly     bool
    	)
    
    	switch {
    	case volSrc != nil:
    		volumeHandle = makeVolumeHandle(string(pod.UID), spec.Name())
    		driverName = volSrc.Driver
    		if volSrc.ReadOnly != nil {
    			readOnly = *volSrc.ReadOnly
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/ztunnelserver.go

    		return err
    	}
    
    	log.Debugf("sending delete pod to ztunnel: %s %v", uid, r)
    
    	var delErr []error
    
    	z.conns.mu.Lock()
    	defer z.conns.mu.Unlock()
    	for conn := range z.conns.connectionSet {
    		_, err := conn.send(ctx, data, nil)
    		if err != nil {
    			delErr = append(delErr, err)
    		}
    	}
    	return errors.Join(delErr...)
    }
    
    func podToWorkload(pod *v1.Pod) *zdsapi.WorkloadInfo {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/topology/topology_test.go

    		want:    -1,
    		wantErr: true,
    	}}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			got, err := tt.topo.CPUCoreID(tt.id)
    			gotErr := (err != nil)
    			if gotErr != tt.wantErr {
    				t.Errorf("CPUCoreID() returned err %v, want %v", gotErr, tt.wantErr)
    			}
    			if got != tt.want {
    				t.Errorf("CPUCoreID() returned %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 31.7K bytes
    - Viewed (0)
Back to top