Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for REPORT (0.12 sec)

  1. src/go/types/expr.go

    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    	// attempt at conversion, and if the operand types are
    	// not compatible, we report a type mismatch error.
    	mayConvert := func(x, y *operand) bool {
    		// If both operands are typed, there's no need for an implicit conversion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        `project-report`
    }
    
    configure<ProjectReportsPluginConvention> {
        projectReportDirName = "custom" // Accessing a convention
    }
    ----
    =====
    
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id 'project-report'
    }
    
    projectReportDirName = "custom" // Accessing a convention
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // contains the character 'A' or starts with "Foo.".
      bool should_run() const { return should_run_; }
    
      // Returns true iff this test will appear in the XML report.
      bool is_reportable() const {
        // For now, the XML report includes all tests matching the filter.
        // In the future, we may trim tests that are excluded because of
        // sharding.
        return matches_filter_;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // contains the character 'A' or starts with "Foo.".
      bool should_run() const { return should_run_; }
    
      // Returns true iff this test will appear in the XML report.
      bool is_reportable() const {
        // For now, the XML report includes all tests matching the filter.
        // In the future, we may trim tests that are excluded because of
        // sharding.
        return matches_filter_;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    	// attempt at conversion, and if the operand types are
    	// not compatible, we report a type mismatch error.
    	mayConvert := func(x, y *operand) bool {
    		// If both operands are typed, there's no need for an implicit conversion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                for (ReportPlugin report :
                        project.getModel().getDelegate().getReporting().getPlugins()) {
                    Plugin pp = Plugin.newBuilder()
                            .groupId(report.getGroupId())
                            .artifactId(report.getArtifactId())
                            .version(report.getVersion())
                            .build();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    		// doesn't, we'll emit an internal error and hopefully the user will report
    		// it as a bug.
    		for _, m := range ld.requirements.rootModules {
    			if v := mg.Selected(m.Path); v != m.Version {
    				fmt.Fprintln(os.Stderr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    	}
    
    	// V1 has no method m. Should not report wrongType.
    	checkMissingMethod("V1", false)
    
    	// V2 has method m with wrong signature type (ignoring receiver). Should report wrongType.
    	checkMissingMethod("V2", true)
    
    	// V3 has no method m but it exists on *V3. Should report wrongType.
    	checkMissingMethod("V3", true)
    
    	// V4 has no method m but has M. Should not report wrongType.
    	checkMissingMethod("V4", false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    			if override, ok := obj.Annotations[addressTypeOverride]; ok {
    				wantAddressType = k8s.AddressType(override)
    			}
    			// There are no external addresses, so report the internal ones
    			// TODO: should we always report both?
    			if wantAddressType == k8s.IPAddressType {
    				addressesToReport = internalIP
    			} else {
    				for _, hostport := range internal {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    			cloudProviderType: cloudProviderExternal,
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    		},
    		{
    			name: "cloud doesn't report hostname, no override, detected hostname mismatch",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top