Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for nameVal (0.4 sec)

  1. src/database/sql/fakedb_test.go

    	for n, colspec := range strings.Split(parts[2], ",") {
    		if colspec == "" {
    			continue
    		}
    		nameVal := strings.Split(colspec, "=")
    		if len(nameVal) != 2 {
    			stmt.Close()
    			return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
    		}
    		column, value := nameVal[0], nameVal[1]
    		_, ok := c.db.columnType(stmt.table, column)
    		if !ok {
    			stmt.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/text/template/exec.go

    			return field
    		}
    	case reflect.Map:
    		// If it's a map, attempt to use the field name as a key.
    		nameVal := reflect.ValueOf(fieldName)
    		if nameVal.Type().AssignableTo(receiver.Type().Key()) {
    			if hasArgs {
    				s.errorf("%s is not a method but has arguments", fieldName)
    			}
    			result := receiver.MapIndex(nameVal)
    			if !result.IsValid() {
    				switch s.tmpl.option.missingKey {
    				case mapInvalid:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/scope.cc

      return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner,
                            /* disable_shape_inference */ false));
    }
    
    Scope Scope::DisabledShapeInferenceScope() {
      Graph* graph = new Graph(OpRegistry::Global());
      ShapeRefiner* refiner =
          new ShapeRefiner(graph->versions(), graph->op_registry());
      return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunction.ir.txt

          VALUE_PARAMETER name:a index:0 type:kotlin.Int
          VALUE_PARAMETER name:b index:1 type:kotlin.String
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
            FUN LOCAL_FUNCTION name:call visibility:local modality:FINAL <> (a:kotlin.Int, b:kotlin.String) returnType:kotlin.Unit
              VALUE_PARAMETER name:a index:0 type:kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.ir.txt

            BLOCK_BODY
              VAR name:x type:kotlin.Int [var]
              FUN LOCAL_FUNCTION name:call visibility:local modality:FINAL <> (a:kotlin.Int) returnType:kotlin.Unit
                VALUE_PARAMETER name:a index:0 type:kotlin.Int
                BLOCK_BODY
                  CALL 'public final fun consume (obj: kotlin.Any): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. cmd/metrics-v3-logger-webhook.go

    )
    
    const (
    	webhookQueueLength    = "queue_length"
    	webhookTotalMessages  = "total_messages"
    	webhookFailedMessages = "failed_messages"
    	nameL                 = "name"
    	endpointL             = "endpoint"
    )
    
    var (
    	allWebhookLabels        = []string{nameL, endpointL}
    	webhookFailedMessagesMD = NewCounterMD(webhookFailedMessages,
    		"Number of messages that failed to send",
    		allWebhookLabels...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:27:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. callbacks.go

    			fns = append(fns, cs[idx].handler)
    		}
    	}
    
    	return
    }
    
    func removeCallbacks(cs []*callback, nameMap map[string]bool) []*callback {
    	callbacks := make([]*callback, 0, len(cs))
    	for _, callback := range cs {
    		if nameMap[callback.name] {
    			continue
    		}
    		callbacks = append(callbacks, callback)
    	}
    	return callbacks
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * 1st digit represents the OWNER, 2nd represents the GROUP while the 3rd represents OTHER users.
         * <p>
         * Each of the digits is the sum of its component bits in the binary numeral system.
         * Each of the 3 bits represents a permission.
         * 1st bit is the READ bit, adds 4 to the digit (binary 100).
         * 2nd bit is the WRITE bit, adds 2 to the digit (binary 010).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Frsize      uint64
    	Bfree       uint64
    	Files       uint32
    	Ffree       uint32
    	Favail      uint32
    	Namemax31   uint32
    	Invarsec    uint32
    	_           [4]byte
    	Fsid        uint64
    	Namemax     uint64
    }
    
    type Statfs_t struct {
    	Type    uint64
    	Bsize   uint64
    	Blocks  uint64
    	Bfree   uint64
    	Bavail  uint64
    	Files   uint32
    	Ffree   uint32
    	Fsid    uint64
    	Namelen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2166          ; mapped                 ; 0076 0069 0069 #1.1  ROMAN NUMERAL SEVEN
    2167          ; mapped                 ; 0076 0069 0069 0069 #1.1 ROMAN NUMERAL EIGHT
    2168          ; mapped                 ; 0069 0078     # 1.1  ROMAN NUMERAL NINE
    2169          ; mapped                 ; 0078          # 1.1  ROMAN NUMERAL TEN
    216A          ; mapped                 ; 0078 0069     # 1.1  ROMAN NUMERAL ELEVEN
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top