Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for INITIALIZING (0.1 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Component-base/logs: when compiled with Go >= 1.21, component-base will automatically configure the slog default logger together with initializing klog. ([#120696](https://github.com/kubernetes/kubernetes/pull/120696), [@pohly](https://github.com/pohly)) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Network, Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    			return nil, fmt.Errorf("all pools must have same deployment ID - expected %s, got %s for pool(%s)", deploymentID, formats[i].ID, humanize.Ordinal(i+1))
    		}
    
    		bootstrapTrace(fmt.Sprintf("newErasureSets: initializing %s pool", humanize.Ordinal(i+1)), func() {
    			z.serverPools[i], err = newErasureSets(ctx, ep, storageDisks[i], formats[i], commonParityDrives, i)
    		})
    		if err != nil {
    			return nil, err
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	raw    RawSockaddrIUCV
    }
    
    func (sa *SockaddrIUCV) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Family = AF_IUCV
    	// These are EBCDIC encoded by the kernel, but we still need to pad them
    	// with blanks. Initializing with blanks allows the caller to feed in either
    	// a padded or an unpadded string.
    	for i := 0; i < 8; i++ {
    		sa.raw.Nodeid[i] = ' '
    		sa.raw.User_id[i] = ' '
    		sa.raw.Name[i] = ' '
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    // to the resulting allocation.
    func regalloc(f *Func) {
    	var s regAllocState
    	s.init(f)
    	s.regalloc(f)
    	s.close()
    }
    
    type register uint8
    
    const noRegister register = 255
    
    // For bulk initializing
    var noRegisters [32]register = [32]register{
    	noRegister, noRegister, noRegister, noRegister, noRegister, noRegister, noRegister, noRegister,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top