Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 113 for Implementation (0.2 sec)

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

    === Example: Defining tool chains
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/tool-chains/groovy/build.gradle[tag=toolChains]
    ----
    
    Each tool chain implementation allows for a certain degree of configuration (see the API documentation for more details).
    
    [[sec:using_tool_chains]]
    === Using tool chains
    
    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. src/cmd/dist/test.go

    			&goTest{
    				variant: "osusergo",
    				timeout: 300 * time.Second,
    				tags:    []string{"osusergo"},
    				pkg:     "os/user",
    			})
    		t.registerTest("hash/maphash purego implementation",
    			&goTest{
    				variant: "purego",
    				timeout: 300 * time.Second,
    				tags:    []string{"purego"},
    				pkg:     "hash/maphash",
    			})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if err != nil {
    		return nil, err
    	}
    
    	return newRuntimeVersion(typedVersion.RuntimeVersion)
    }
    
    // APIVersion returns the cached API version information of the container
    // runtime. Implementation is expected to update this cache periodically.
    // This may be different from the runtime engine's version.
    func (m *kubeGenericRuntimeManager) APIVersion() (kubecontainer.Version, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      map<string, string> limits = 1;
    
      // The minimum amount of compute resources required. If Requests is omitted for a container,
      // it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value.
      // More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
      map<string, string> requests = 2;
    }
    
    // Mirrors ServiceAccount for unmarshaling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      std::unordered_map<string, string> clusters = GetClusters(*graph);
    
      EXPECT_EQ(clusters["test/z"], "");
    }
    
    // Note, this relies on other implementation details to test the
    // specific heuristic we care about here, so other changes might be at fault if
    // this CL breaks. What we care about is that if a ShapeConsumingOp can be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Moved remote CRI implementation from kubelet to `k8s.io/cri-client` repository. ([#124634](https://github.com/kubernetes/kubernetes/pull/124634), [@saschagrunert](https://github.com/saschagrunert)) [SIG Node, Release and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/time/time.go

    // zones. By comparison, it's reasonable to mishandle some times in
    // the year -292277022399.
    //
    // All this is opaque to clients of the API and can be changed if a
    // better implementation presents itself.
    
    const (
    	// The unsigned zero year for internal calculations.
    	// Must be 1 mod 400, and times before it will not compute correctly,
    	// but otherwise can be changed at will.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    	// Unlike the other stubs, this is not populated if left nil
    	// Instead, it is called when non-nil because any valid implementation
    	// of this function basically requires closing over this scavenger
    	// state, and allocating a closure is not allowed in the runtime as
    	// a matter of policy.
    	sleepStub func(n int64) int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

         */
    
        @Override
        public String toString () {
            return Strings.maskSecretValue(url.toString());
        }
    
    
        /* URLConnection implementation */
        /**
         * This URLConnection method just returns the result of <tt>length()</tt>.
         *
         * @return the length of this file or 0 if it refers to a directory
         */
        @Deprecated
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. src/runtime/mgc.go

    )
    
    // heapObjectsCanMove always returns false in the current garbage collector.
    // It exists for go4.org/unsafe/assume-no-moving-gc, which is an
    // unfortunate idea that had an even more unfortunate implementation.
    // Every time a new Go release happened, the package stopped building,
    // and the authors had to add a new file with a new //go:build line, and
    // then the entire ecosystem of packages with that as a dependency had to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top