Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 536 for dAtA (0.1 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                output_file_contents_txt.data(), output_file_contents_txt.size()));
        PyDict_SetItemString(dict, "arithmetic_ops",
                             PyLong_FromLong(arithmetic_ops_count));
        return dict;
      }
      // Convert arguments back to byte (py3) or str (py2)
      return ::tflite::python_utils::ConvertToPyString(
          output_file_contents_txt.data(), output_file_contents_txt.size());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

            val overlayOriginDump = DomTestUtil.printDomByTraversal(
                result.document,
                { "* $it -> ${result.overlayNodeOriginContainer.data(it)}" },
                { "- $it -> ${result.overlayNodeOriginContainer.data(it)}" },
            )
    
            result.overlayNodeOriginContainer.collectToMap(result.document).entries.joinToString("\n") { "${it.key} -> ${it.value}" }
    
            assertEquals(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                    'org/joda/',
                    'org/joda/time/',
                    'org/joda/time/tz/',
                    'org/joda/time/tz/data/',
                    'org/joda/time/tz/data/Africa/',
                    'org/joda/time/tz/data/Africa/Abidjan',
                    'org/gradle/MyAClass.class',
                    'org/gradle/MyBClass.class',
                    'org/gradle/MyFirstClass.class',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    // encrypt it using the provided key and return the result.
    func compressionIndexEncrypter(key crypto.ObjectKey, input func() []byte) func() []byte {
    	var data []byte
    	var fetched bool
    	return func() []byte {
    		if !fetched {
    			data = input()
    			fetched = true
    		}
    		return metadataEncrypter(key)("compression-index", data)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/internal/trace/event.go

    	Args []uint64
    
    	// Data is additional unparsed data that is associated with the experimental event.
    	// Data is likely to be shared across many ExperimentalEvents, so callers that parse
    	// Data are encouraged to cache the parse result and look it up by the value of Data.
    	Data *ExperimentalData
    }
    
    // ExperimentalData represents some raw and unparsed sidecar data present in the trace that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. src/encoding/base32/base32.go

    	for n < min && err == nil {
    		var nn int
    		nn, err = r.Read(buf[n:])
    		n += nn
    	}
    	// data was read, less than min bytes could be read
    	if n < min && n > 0 && err == io.EOF {
    		err = io.ErrUnexpectedEOF
    	}
    	// no data was read, the buffer already contains some data
    	// when padding is disabled this is not an error, as the message can be of
    	// any length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/Helpers.java

        return new AbstractList<T>() {
          ArrayList<T> data = new ArrayList<>();
    
          @Override
          public int size() {
            return Math.max(0, data.size() + delta);
          }
    
          @Override
          public T get(int index) {
            return data.get(index);
          }
    
          @Override
          public T set(int index, T element) {
            return data.set(index, element);
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclaim_test.go

    									},
    								},
    							},
    						},
    					},
    				}
    				return claim
    			},
    		},
    		"invalid-duplicated-data": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("status", "allocation", "resourceHandles").Index(0), nil, "data and structuredData are mutually exclusive")},
    			oldClaim:     validClaim,
    			update: func(claim *resource.ResourceClaim) *resource.ResourceClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. docs/en/docs/python-types.md

    You declare the "shape" of the data as classes with attributes.
    
    And each attribute has a type.
    
    Then you create an instance of that class with some values and it will validate the values, convert them to the appropriate type (if that's the case) and give you an object with all the data.
    
    And you get all the editor support with that resulting object.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers-idp-config.go

    	}
    
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	data, err := json.Marshal(cfgList)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	econfigData, err := madmin.EncryptData(password, data)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top