Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,473 for sample_2 (5.93 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    			matched = true
    		}
    	}
    	// For all samples, strip locations after the highest matching one.
    	s := make([]*Sample, 0, len(p.Sample))
    	for _, sample := range p.Sample {
    		for i := len(sample.Location) - 1; i >= 0; i-- {
    			if showFromLocs[sample.Location[i].ID] {
    				sample.Location = sample.Location[:i+1]
    				s = append(s, sample)
    				break
    			}
    		}
    	}
    	p.Sample = s
    	return matched
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/src/main/java/Sample.java

    class Sample {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/groovy/src/main/java/Sample.java

    public class Sample {}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23 bytes
    - Viewed (0)
  4. releasenotes/notes/dynatrace-sampler.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 50001
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 20:27:07 UTC 2024
    - 196 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/testdata/sample.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This is a sample test file illustrating the use
    // of error comments with the error test harness.
    
    package p
    
    // The following are invalid error comments; they are
    // silently ignored. The prefix must be exactly one of
    // "/* ERROR " or "// ERROR ".
    //
    /*ERROR*/
    /*ERROR foo*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 951 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how a Spring Boot Web application can be built with Gradle.
    The application was generated using the https://start.spring.io/#!type=gradle-project[Spring Initializr].
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    To build a static library, please refer to the https://github.com/gradle/native-samples/tree/master/cpp/static-library[static library sample].
    
    NOTE: Dependencies on other projects isn't covered in this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    ====
    include::sample[dir="samples/build-organization/composite-builds/basic/kotlin",files="build.gradle.kts[tags=run]"]
    include::sample[dir="samples/build-organization/composite-builds/basic/groovy",files="build.gradle[tags=run]"]
    ====
    
    Or you can declare a dependency on tasks with a certain path in some or all of the included builds:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

            sample_proto = _RepresentativeDataSample.FromString(
                sample_bytes.numpy()
            )
            sample = {}
            for input_key, tensor_proto in sample_proto.tensor_proto_inputs.items():
              sample[input_key] = tensor_util.MakeNdarray(tensor_proto)
            samples.append(sample)
        return samples
    
      def load(self) -> RepresentativeDatasetMapping:
        """Loads the representative datasets.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/internal/profile/merge.go

    	// existing sample.
    	k := s.key()
    	if ss, ok := pm.samples[k]; ok {
    		for i, v := range src.Value {
    			ss.Value[i] += v
    		}
    		return ss
    	}
    	copy(s.Value, src.Value)
    	pm.samples[k] = s
    	pm.p.Sample = append(pm.p.Sample, s)
    	return s
    }
    
    // key generates sampleKey to be used as a key for maps.
    func (sample *Sample) key() sampleKey {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
Back to top