Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 144 for swiftc (0.24 sec)

  1. src/encoding/json/decode.go

    	data, i := d.data, d.off
    Switch:
    	switch data[i-1] {
    	case '"': // string
    		for ; i < len(data); i++ {
    			switch data[i] {
    			case '\\':
    				i++ // escaped char
    			case '"':
    				i++ // tokenize the closing quote too
    				break Switch
    			}
    		}
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-': // number
    		for ; i < len(data); i++ {
    			switch data[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

            this.state = state;
            condition.signalAll();
        }
    
        DaemonStopState awaitStop() {
            lock.lock();
            try {
                while (true) {
                    try {
                        switch (state) {
                            case Idle:
                            case Busy:
                                LOGGER.debug("daemon is running. Sleeping until state changes.");
                                condition.await();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. schema/field.go

    		field.GORMDataType = field.DataType
    	}
    
    	if val, ok := field.TagSettings["TYPE"]; ok {
    		switch DataType(strings.ToLower(val)) {
    		case Bool, Int, Uint, Float, String, Time, Bytes:
    			field.DataType = DataType(strings.ToLower(val))
    		default:
    			field.DataType = DataType(val)
    		}
    	}
    
    	if field.Size == 0 {
    		switch reflect.Indirect(fieldValue).Kind() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. cmd/postpolicyform.go

    	policyCondStartsWith    = "starts-with"
    	policyCondContentLength = "content-length-range"
    )
    
    // toString - Safely convert interface to string without causing panic.
    func toString(val interface{}) string {
    	switch v := val.(type) {
    	case string:
    		return v
    	default:
    		return ""
    	}
    }
    
    // toLowerString - safely convert interface to lower string
    func toLowerString(val interface{}) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. callbacks/preload.go

    			return err
    		}
    	}
    
    	fieldValues := make([]interface{}, len(relForeignFields))
    
    	// clean up old values before preloading
    	switch reflectValue.Kind() {
    	case reflect.Struct:
    		switch rel.Type {
    		case schema.HasMany, schema.Many2Many:
    			tx.AddError(rel.Field.Set(tx.Statement.Context, reflectValue, reflect.MakeSlice(rel.Field.IndirectFieldType, 0, 10).Interface()))
    		default:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/shape_inference_test.cc

            10);
        auto less = ops::Less(scope.WithOpName("while/Less"), merge.output, ten);
        auto loop_cond = ops::LoopCond(scope.WithOpName("while/LoopCond"), less);
        auto switch_node =
            ops::Switch(scope.WithOpName("while/Switch"), merge.output, loop_cond);
        auto exit = ops::internal::Exit(scope.WithOpName("while/Exit"),
                                        switch_node.output_false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. cmd/admin-handlers-idp-config.go

    	idpCfgType := mux.Vars(r)["type"]
    	if !madmin.ValidIDPConfigTypes.Contains(idpCfgType) {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminConfigInvalidIDPType), r.URL)
    		return
    	}
    
    	var subSys string
    	switch idpCfgType {
    	case madmin.OpenidIDPCfg:
    		subSys = madmin.IdentityOpenIDSubSys
    	case madmin.LDAPIDPCfg:
    		subSys = madmin.IdentityLDAPSubSys
    	}
    
    	cfgName := mux.Vars(r)["name"]
    	cfgTarget := madmin.Default
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

        def javaOption = 1
        def languageSelectionOptions = [
            "Select implementation language:",
            "1: Java",
            "2: Kotlin",
            "3: Groovy",
            "4: Scala",
            "5: C++",
            "6: Swift"
        ]
    
        @Override
        String subprojectName() { 'app' }
    
        def "prompts user when run from an interactive session"() {
            when:
            def handle = startInteractiveExecutorWithTasks("init")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. pkg/zdsapi/zds.pb.go

    			switch v := v.(*ZdsHello); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_zdsapi_zds_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*WorkloadInfo); i {
    			case 0:
    				return &v.state
    			case 1:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/cmd/cover/cover.go

    }
    
    // Visit implements the ast.Visitor interface.
    func (f *File) Visit(node ast.Node) ast.Visitor {
    	switch n := node.(type) {
    	case *ast.BlockStmt:
    		// If it's a switch or select, the body is a list of case clauses; don't tag the block itself.
    		if len(n.List) > 0 {
    			switch n.List[0].(type) {
    			case *ast.CaseClause: // switch
    				for _, n := range n.List {
    					clause := n.(*ast.CaseClause)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top