Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for stringVar (0.36 sec)

  1. pkg/printers/internalversion/printers_test.go

    				Ports: []discovery.EndpointPort{{
    					Name:     utilpointer.StringPtr("http"),
    					Port:     utilpointer.Int32Ptr(80),
    					Protocol: &tcpProtocol,
    				}, {
    					Name:     utilpointer.StringPtr("https"),
    					Port:     utilpointer.Int32Ptr(443),
    					Protocol: &tcpProtocol,
    				}, {
    					Name:     utilpointer.StringPtr("extra1"),
    					Port:     utilpointer.Int32Ptr(3000),
    					Protocol: &tcpProtocol,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. src/reflect/value.go

    		} else {
    			ifaceE2I(dst, x, target)
    		}
    		return Value{dst, target, flagIndir | flag(Interface)}
    	}
    
    	// Failed.
    	panic(context + ": value of type " + stringFor(v.typ()) + " is not assignable to type " + stringFor(dst))
    }
    
    // Convert returns the value v converted to type t.
    // If the usual Go conversion rules do not allow conversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (IMake _typ (ArrayMake1 val)) => (IMake _typ val)
    (ArraySelect [0] (IData x)) => (IData x)
    
    // string ops
    // Decomposing StringMake and lowering of StringPtr and StringLen
    // happens in a later pass, dec, so that these operations are available
    // to other passes for optimizations.
    (StringPtr (StringMake (Addr <t> {s} base) _)) => (Addr <t> {s} base)
    (StringLen (StringMake _ (Const64 <t> [c]))) => (Const64 <t> [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    	case LevelSerializable:
    		return "Serializable"
    	case LevelLinearizable:
    		return "Linearizable"
    	default:
    		return "IsolationLevel(" + strconv.Itoa(int(i)) + ")"
    	}
    }
    
    var _ fmt.Stringer = LevelDefault
    
    // TxOptions holds the transaction options to be used in [DB.BeginTx].
    type TxOptions struct {
    	// Isolation is the transaction isolation level.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top