Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for swiftc (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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 (1)
  5. 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)
  6. src/log/slog/value.go

    }
    
    // Unexported version of Kind, just so we can store Kinds in Values.
    // (No user-provided value has this type.)
    type kind Kind
    
    // Kind returns v's Kind.
    func (v Value) Kind() Kind {
    	switch x := v.any.(type) {
    	case Kind:
    		return x
    	case stringptr:
    		return KindString
    	case timeLocation, timeTime:
    		return KindTime
    	case groupptr:
    		return KindGroup
    	case LogValuer:
    		return KindLogValuer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle.go

    			// - expected time to action is the same for both actions
    			if now.After(a.Due) && now.After(b.Due) || a.Due.Equal(b.Due) {
    				switch a.Action {
    				case DeleteAllVersionsAction, DelMarkerDeleteAllVersionsAction,
    					DeleteAction, DeleteVersionAction:
    					return -1
    				}
    				switch b.Action {
    				case DeleteAllVersionsAction, DelMarkerDeleteAllVersionsAction,
    					DeleteAction, DeleteVersionAction:
    					return 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/cmd/trace/main.go

    	telemetry.CountFlags("trace/flag:", *flag.CommandLine)
    
    	// Go 1.7 traces embed symbol info and does not require the binary.
    	// But we optionally accept binary as first arg for Go 1.5 traces.
    	switch flag.NArg() {
    	case 1:
    		traceFile = flag.Arg(0)
    	case 2:
    		programBinary = flag.Arg(0)
    		traceFile = flag.Arg(1)
    	default:
    		flag.Usage()
    	}
    
    	tracef, err := os.Open(traceFile)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/go/types/operand.go

    		expr = ExprString(x.expr)
    	} else {
    		switch x.mode {
    		case builtin:
    			expr = predeclaredFuncs[x.id].name
    		case typexpr:
    			expr = TypeString(x.typ, qf)
    		case constant_:
    			expr = x.val.String()
    		}
    	}
    
    	// <expr> (
    	if expr != "" {
    		buf.WriteString(expr)
    		buf.WriteString(" (")
    	}
    
    	// <untyped kind>
    	hasType := false
    	switch x.mode {
    	case invalid, novalue, builtin, typexpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. scan.go

    		initialized         = mode&ScanInitialized != 0
    		update              = mode&ScanUpdate != 0
    		onConflictDonothing = mode&ScanOnConflictDoNothing != 0
    	)
    
    	db.RowsAffected = 0
    
    	switch dest := db.Statement.Dest.(type) {
    	case map[string]interface{}, *map[string]interface{}:
    		if initialized || rows.Next() {
    			columnTypes, _ := rows.ColumnTypes()
    			prepareValues(values, db, columnTypes, columns)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top