Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for comp2 (0.24 sec)

  1. src/image/jpeg/scan.go

    	// The h0, mxx, by and bx variables have the same meaning as in the
    	// processSOS method.
    	h0 := d.comp[0].h
    	mxx := (d.width + 8*h0 - 1) / (8 * h0)
    	for i := 0; i < d.nComp; i++ {
    		if d.progCoeffs[i] == nil {
    			continue
    		}
    		v := 8 * d.comp[0].v / d.comp[i].v
    		h := 8 * d.comp[0].h / d.comp[i].h
    		stride := mxx * d.comp[i].h
    		for by := 0; by*v < d.height; by++ {
    			for bx := 0; bx*h < d.width; bx++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/image/jpeg/reader.go

    	}
    
    	for i := 0; i < d.nComp; i++ {
    		d.comp[i].c = d.tmp[6+3*i]
    		// Section B.2.2 states that "the value of C_i shall be different from
    		// the values of C_1 through C_(i-1)".
    		for j := 0; j < i; j++ {
    			if d.comp[i].c == d.comp[j].c {
    				return FormatError("repeated component identifier")
    			}
    		}
    
    		d.comp[i].tq = d.tmp[8+3*i]
    		if d.comp[i].tq > maxTq {
    			return FormatError("bad Tq value")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/wait.go

    	components := getControlPlaneComponents(cfg)
    
    	var errs []error
    	errChan := make(chan error, len(components))
    
    	for _, comp := range components {
    		fmt.Printf("[control-plane-check] Checking %s at %s\n", comp.name, comp.url)
    
    		go func(comp controlPlaneComponent) {
    			tr := &http.Transport{
    				TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    			}
    			client := &http.Client{Transport: tr}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

                    dependencies { implementation(project(":sub")) }
                """
            }
            includedBuild('comp').multiProjectBuild('comp', ['sub'], createTasks).settingsFile
            buildFile << """
                tasks.named('build').configure { it.dependsOn gradle.includedBuild('comp').task(':build') }
            """
    
            when:
            run 'build'
    
            then:
            verifyTaskIds()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/go/types/typeset.go

    	// the result must only include comparable types.
    	comp := xcomp || ycomp
    	if comp && !terms.isAll() {
    		// only keep comparable terms
    		i := 0
    		for _, t := range terms {
    			assert(t.typ != nil)
    			if comparable(t.typ, false /* strictly comparable */, nil, nil) {
    				terms[i] = t
    				i++
    			}
    		}
    		terms = terms[:i]
    		if !terms.isAll() {
    			comp = false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeset.go

    	// the result must only include comparable types.
    	comp := xcomp || ycomp
    	if comp && !terms.isAll() {
    		// only keep comparable terms
    		i := 0
    		for _, t := range terms {
    			assert(t.typ != nil)
    			if comparable(t.typ, false /* strictly comparable */, nil, nil) {
    				terms[i] = t
    				i++
    			}
    		}
    		terms = terms[:i]
    		if !terms.isAll() {
    			comp = false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top