Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 256 for cont (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    	})
    
    	if conf.Clock == nil {
    		conf.Clock = clock.RealClock{}
    	}
    	manager := &managerImpl{
    		logger:                           conf.Logger,
    		probeManager:                     conf.ProbeManager,
    		recorder:                         conf.Recorder,
    		nodeRef:                          conf.NodeRef,
    		getPods:                          conf.GetPodsFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns.go

    		klog.V(4).InfoS("Check limits for resolv.conf failed at parse resolv.conf", "err", err)
    		return
    	}
    
    	domainCountLimit, maxDNSSearchListChars := validation.MaxDNSSearchPaths, validation.MaxDNSSearchListChars
    
    	if c.ClusterDomain != "" {
    		domainCountLimit -= 3
    	}
    
    	if len(hostSearch) > domainCountLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top