Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for comp2 (0.12 sec)

  1. src/archive/zip/register.go

    	}
    }
    
    // RegisterCompressor registers custom compressors for a specified method ID.
    // The common methods [Store] and [Deflate] are built in.
    func RegisterCompressor(method uint16, comp Compressor) {
    	if _, dup := compressors.LoadOrStore(method, comp); dup {
    		panic("compressor already registered")
    	}
    }
    
    func compressor(method uint16) Compressor {
    	ci, ok := compressors.Load(method)
    	if !ok {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_ppc64x.s

    	ISEL	CR1EQ,R3,R4,R3
    	RET
    
    	PCALIGN	$16
    cmp4:	// 4 - 7B
    	CMP	R9,$4
    	BLT	cmp2
    	ANDCC	$3,R9,R9
    	_LWBEX	(R0)(R5),R10
    	_LWBEX	(R0)(R6),R11
    	_LWBEX	(R9)(R5),R12
    	_LWBEX	(R9)(R6),R14
    	RLDIMI	$32,R10,$0,R12
    	RLDIMI	$32,R11,$0,R14
    	CMPU	R12,R14
    	BR	cmp0
    
    	PCALIGN $16
    cmp2:	// 2 - 3B
    	CMP	R9,$2
    	BLT	cmp1
    	ANDCC	$1,R9,R9
    	_LHBEX	(R0)(R5),R10
    	_LHBEX	(R0)(R6),R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. src/runtime/proc_test.go

    		t.Skip("skipping during short test")
    	}
    	maxprocs := runtime.GOMAXPROCS(3)
    	compl := make(chan bool, 2)
    	go func() {
    		for i := 0; i != 1000; i += 1 {
    			runtime.GC()
    		}
    		compl <- true
    	}()
    	go func() {
    		for i := 0; i != 1000; i += 1 {
    			runtime.GOMAXPROCS(3)
    		}
    		compl <- true
    	}()
    	go perpetuumMobile()
    	<-compl
    	<-compl
    	stop <- true
    	runtime.GOMAXPROCS(maxprocs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

      x:U:1 -> x:U:1 - Could not resolve x:U:1.
    """
        }
    
        private void node(String module, ComponentSelectionReason reason = ComponentSelectionReasons.requested()) {
            DummyModuleVersionSelection moduleVersion = comp(module, reason)
            builder.startVisitComponent(moduleVersion.resultId, moduleVersion.selectionReason, "repo")
            builder.visitComponentDetails(moduleVersion.componentId, moduleVersion.moduleVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. internal/s3select/sql/statement.go

    		if err != nil {
    			return nil, err
    		}
    
    		// Pick output column names
    		if expr.As != "" {
    			output, err = output.Set(expr.As, v)
    		} else if comp, ok := getLastKeypathComponent(expr.Expression); ok {
    			output, err = output.Set(comp, v)
    		} else {
    			output, err = output.Set(fmt.Sprintf("_%d", i+1), v)
    		}
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	// Update count of records output.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 09 17:19:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	}
    	sort.Slice(aBlocks, func(i, j int) bool {
    		if aBlocks[i].Type < aBlocks[j].Type {
    			return true
    		} else if aBlocks[i].Type == aBlocks[j].Type {
    			comp := bytes.Compare(aBlocks[i].Bytes, aBlocks[j].Bytes)
    			return comp <= 0
    		} else {
    			return false
    		}
    	})
    
    	bBlocks := []*pem.Block{}
    	for {
    		block, b = pem.Decode(b)
    		if block == nil {
    			break
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/dec64.rules

    	(Int64Make
    		(Xor32 <typ.UInt32> (Int64Hi x) (Int64Hi y))
    		(Xor32 <typ.UInt32> (Int64Lo x) (Int64Lo y)))
    
    (Neg64 <t> x) => (Sub64 (Const64 <t> [0]) x)
    
    (Com64 x) =>
    	(Int64Make
    		(Com32 <typ.UInt32> (Int64Hi x))
    		(Com32 <typ.UInt32> (Int64Lo x)))
    
    // Sadly, just because we know that x is non-zero,
    // we don't know whether either component is,
    // so just treat Ctz64NonZero the same as Ctz64.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller.go

    func BuildMultiClusterComponent[T ComponentConstraint](c ComponentBuilder, constructor func(cluster *Cluster) T) *Component[T] {
    	comp := &Component[T]{
    		constructor: constructor,
    		clusters:    make(map[cluster.ID]T),
    	}
    	c.registerHandler(comp)
    	return comp
    }
    
    func (c *Controller) registerHandler(h handler) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

            app.library.headerFiles*.writeToDir(file("src/helloApi"))
            app.library.sourceFiles*.writeToDir(file("src/hello"))
    
            and:
            buildFile << """
    model {
        components { comp ->
            helloApi(NativeLibrarySpec)
            hello(NativeLibrarySpec) {
                sources {
                    cpp.lib ${notation}
                }
            }
            main(NativeExecutableSpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/debug/dwarf/entry_test.go

    	// hand-written.
    	tests := []struct {
    		name      string
    		info      []byte
    		addrSize  int
    		byteOrder binary.ByteOrder
    	}{
    		{
    			"32-bit little",
    			[]byte{0x30, 0, 0, 0, // comp unit length
    				4, 0, // DWARF version 4
    				0, 0, 0, 0, // abbrev offset
    				8, // address size
    				0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top