Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for plans (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    > gradle -q runOperatorsTestFailingCUnitExe
    include::{snippetsPath}/native-binaries/cunit/tests/completeCUnitExample.out[]
    ----
    
    [NOTE]
    ====
    The current support for CUnit is quite rudimentary. Plans for future integration include:
    
    * Allow tests to be declared with Javadoc-style annotations.
    * Improved HTML reporting, similar to that available for JUnit.
    * Real-time feedback for test execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// `FileSystem` is never called (see
      /// https://github.com/tensorflow/tensorflow/issues/27535). In turn, this
      /// function will never be called. There are plans to refactor registration
      /// and fix this.
      ///
      /// TODO(b/139060984): After all filesystems are converted, revisit note.
      ///
      /// This operation must be provided. See "REQUIRED OPERATIONS" above.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Backward compatibility
    
    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    func homeEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "USERPROFILE"
    	case "plan9":
    		return "home"
    	default:
    		return "HOME"
    	}
    }
    
    func tempEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "TMP"
    	case "plan9":
    		return "TMPDIR" // actually plan 9 doesn't have one at all but this is fine
    	default:
    		return "TMPDIR"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	brokenFlag := flag.Bool("broken", false, "include broken ports")
    	xflagparse(0)
    
    	var plats []string
    	for p := range cgoEnabled {
    		if broken[p] && !*brokenFlag {
    			continue
    		}
    		plats = append(plats, p)
    	}
    	sort.Strings(plats)
    
    	if !*jsonFlag {
    		for _, p := range plats {
    			xprintf("%s\n", p)
    		}
    		return
    	}
    
    	type jsonResult struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/os/os_test.go

    		err := p.Kill()
    		if err != nil {
    			t.Fatalf("Failed to kill test process: %v", err)
    		}
    	})
    }
    
    func TestGetppid(t *testing.T) {
    	if runtime.GOOS == "plan9" {
    		// TODO: golang.org/issue/8206
    		t.Skipf("skipping test on plan9; see issue 8206")
    	}
    
    	if Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		fmt.Print(Getppid())
    		Exit(0)
    	}
    
    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            then:
            executedAndNotSkipped(":consumer:resolve")
    
            outputContains("Task-only execution plan: [PlannedTask('Task :producer:producer', deps=[]), PlannedTask('Task :consumer:resolve', deps=[Task :producer:producer, Task :included:nested-producer:producer])]")
            outputContains("Task-only execution plan: [PlannedTask('Task :included:nested-producer:producer', deps=[])]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // ImagePullSecrets for the control plane ServiceAccount, list of secrets in the same namespace
      // to use for pulling any images in pods that reference this ServiceAccount.
      // Must be set for any cluster configured with private docker registry.
      repeated string imagePullSecrets = 37;
    
      // Specifies the default namespace for the Istio control plane components.
      string istioNamespace = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    	"strconv"
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	xdsfault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/fault/v3"
    	cors "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/cors/v3"
    	xdshttpfault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	fault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	redis "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/redis_proxy/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top