Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 358 for data_ (0.03 sec)

  1. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

      // Extract output metadata
      std::map<std::string, std::string> output_metadata;
      for (const auto& metadata : output_model.metadata) {
        const auto& data = output_model.buffers[metadata->buffer]->data;
        output_metadata[metadata->name] = std::string(data.begin(), data.end());
      }
    
      EXPECT_THAT(output_metadata,
                  testing::Contains(testing::Pair(expected_key, expected_value)));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    	}
    
    	data := []byte(mode + " " + asof)
    	return os.WriteFile(d.modefile, data, 0666)
    }
    
    // Mode returns the current telemetry mode, as well as the time that the mode
    // was effective.
    //
    // If there is no effective time, the second result is the zero time.
    //
    // If Mode is "off", no data should be written to the telemetry directory, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/html/template/doc.go

    Similarly to attributes with namespaces, attributes with a "data-" prefix are
    treated as if they had no "data-" prefix. So given
    
    	<a data-href="{{.}}"></a>
    
    At parse time this becomes
    
    	<a data-href="{{. | urlescaper | attrescaper}}"></a>
    
    If an attribute has both a namespace and a "data-" prefix, only the namespace
    will be removed when determining the context. For example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
        <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data);
    
        <T> T computeIfAbsent(Source path, String tag, Supplier<T> data);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/internal/trace/internal/testgen/go122/trace.go

    	}
    
    	// Create the test file's contents.
    	return txtar.Format(&txtar.Archive{
    		Files: []txtar.File{
    			{Name: "expect", Data: expect},
    			{Name: "trace", Data: buf.Bytes()},
    		},
    	})
    }
    
    func (t *Trace) createEvent(ev event.Type, data []byte, args ...uint64) raw.Event {
    	spec := t.specs[ev]
    	if ev != go122.EvStack {
    		if arity := len(spec.Args); len(args) != arity {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportWriter.kt

    import java.io.Writer
    
    
    /**
     * Writes the configuration cache html report.
     *
     * The report is laid out in such a way as to allow extracting the pure JSON model
     * by looking for the `// begin-report-data` and `// end-report-data` markers.
     */
    internal
    class HtmlReportWriter(val writer: Writer) {
    
        private
        val jsonModelWriter = JsonModelWriter(writer)
    
        private
        val htmlTemplate = HtmlReportTemplate.load()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. cmd/bucket-policy.go

    		return nil, err
    	}
    
    	var policyInfo miniogopolicy.BucketAccessPolicy
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if err = json.Unmarshal(data, &policyInfo); err != nil {
    		// This should not happen because data is valid to JSON data.
    		return nil, err
    	}
    
    	return &policyInfo, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // FILE: data/PodcastWithExtraInfo.kt
    package data
    
    class PodcastWithExtraInfo {
        lateinit var url: String
        lateinit var lastEpisodeDate: kotlin.time.TimeSource?
            set(value) {
                field = value
            }
        init {
            lastEpisodeDate = null
            url = ""
        }
    
        operator fun component1() = url
        operator fun component2() = lastEpisodeDate
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 595 bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

     */
    public interface Problem {
    
        /**
         * Returns the problem definition, i.e. the data that is independent of the report context.
         */
        ProblemDefinition getDefinition();
    
        @Nullable
        String getContextualLabel();
    
        /**
         * Returns solutions and advice that contain context-sensitive data, e.g. the message contains references to variables, locations, etc.
         */
        List<String> getSolutions();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-utils.go

    				ModTime:   timeSentinel1970,
    			}, nil
    		}
    		inData = xlMeta.data
    		fi, err = xlMeta.ToFileInfo(volume, path, versionID, false, allParts)
    	}
    	if !data || err != nil {
    		return fi, err
    	}
    	versionID = fi.VersionID
    	if versionID == "" {
    		versionID = nullVersionID
    	}
    	fi.Data = inData.find(versionID)
    	if len(fi.Data) == 0 {
    		// PR #11758 used DataDir, preserve it
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top