Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 273 for cont (0.04 sec)

  1. src/crypto/internal/edwards25519/edwards25519.go

    // Constant-time operations
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    func (v *projCached) Select(a, b *projCached, cond int) *projCached {
    	v.YplusX.Select(&a.YplusX, &b.YplusX, cond)
    	v.YminusX.Select(&a.YminusX, &b.YminusX, cond)
    	v.Z.Select(&a.Z, &b.Z, cond)
    	v.T2d.Select(&a.T2d, &b.T2d, cond)
    	return v
    }
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

                    configurations { conf }
                    dependencies {
                        ${platformDependency(platformType, 'org:platform:1.+')}
                        conf('org:bar')
                    }
                }
                dependencies {
                    conf(project(path: ':recklessLibrary', configuration: 'conf'))
                    conf(project(path: ':secondLibrary', configuration: 'conf'))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. cmd/postpolicyform.go

    			}
    		case []interface{}: // Handle array types.
    			if len(condt) != 3 { // Return error if we have insufficient elements.
    				return parsedPolicy, fmt.Errorf("Malformed conditional fields %s of type %s found in POST policy form", condt, reflect.TypeOf(condt).String())
    			}
    			switch toLowerString(condt[0]) {
    			case policyCondEqual, policyCondStartsWith:
    				for _, v := range condt { // Pre-check all values for type.
    					if !isString(v) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64latelower.go

    	// cond: v.Block == z.Block
    	// result: (CMPconst [0] convertPPC64OpToOpCC(z))
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		z := v_0
    		if z.Op != OpPPC64CNTLZD {
    			break
    		}
    		if !(v.Block == z.Block) {
    			break
    		}
    		v.reset(OpPPC64CMPconst)
    		v.AuxInt = int64ToAuxInt(0)
    		v.AddArg(convertPPC64OpToOpCC(z))
    		return true
    	}
    	// match: (CMPconst [0] z:(RLDICL x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

                .artifact([name: 'projectB-d', conf: 'd'])
                .dependsOn(organisation: 'ivy.configuration', module: 'projectC', revision: '1.7', conf: 'a->default')
                .dependsOn(organisation: 'ivy.configuration', module: 'projectD', revision: '1.7', conf: 'b->default')
                .dependsOn(organisation: 'ivy.configuration', module: 'projectE', revision: '1.7', conf: 'd->default')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                configurations {
                    conf.dependencies.clear()
                }
    
                dependencies {
                    conf 'org.test:dep'
                    conf 'org.test:swag:1.0'
                    conf(platform('org.test:deps:1.0'))
                    conf(platform('org.test:platform:1.0'))
                }
    """
            checkConfiguration("conf")
            resolve.expectDefaultConfiguration("runtime")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/func_test.go

    }
    
    // If specifies a BlockIf.
    func If(cond, sub, alt string) ctrl {
    	return ctrl{BlockIf, cond, []string{sub, alt}}
    }
    
    // Exit specifies a BlockExit.
    func Exit(arg string) ctrl {
    	return ctrl{BlockExit, arg, []string{}}
    }
    
    // Eq specifies a BlockAMD64EQ.
    func Eq(cond, sub, alt string) ctrl {
    	return ctrl{BlockAMD64EQ, cond, []string{sub, alt}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. cmd/ftp-server-driver.go

    	if bucket == "" {
    		return errors.New("bucket name cannot be empty")
    	}
    
    	clnt, err := driver.getMinIOClient(ctx)
    	if err != nil {
    		return err
    	}
    
    	if prefix == "" {
    		return clnt.MakeBucket(context.Background(), bucket, minio.MakeBucketOptions{Region: globalSite.Region()})
    	}
    
    	dirPath := buildMinioDir(prefix)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

                }
                'org.test:moduleB:1.0'()
            }
    
            when:
            buildFile << """
                configurations.conf {
                    attributes { attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 8) }
                }
                dependencies {
                    conf 'org.test:moduleA:1.0'
                    components {
                        withModule('org.test:moduleA', MissingJdk8VariantRule) { params('runtime') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                        confAttrs.transitive = 'false'
                    }
                    conf(confAttrs)
                }
            }
            builder.publications {
                artifacts.each { art ->
                    if (!art.undeclared) {
                        Set<String> confs = []
                        if (art.conf) {
                            confs = [art.conf]
                        } else {
                            variants.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top