Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,073 for 2_spec (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            return hierarchy.getNodesAccessing(location.absolutePath)
        }
    
        static Spec<FileTreeElement> includes(String include) {
            return new PatternSet().include(include).asSpec
        }
    
        static Spec<FileTreeElement> excludes(String exclude) {
            return new PatternSet().exclude(exclude).asSpec
        }
    
        void assertNodesAccessing(String location, Node... expectedNodeList) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            included file('.git', 'abc')
            excluded file('foo', '.DS_Store')
        }
    
        boolean included(FileTreeElement file) {
            patternSet.asSpec.isSatisfiedBy(file)
        }
    
        boolean excluded(FileTreeElement file) {
            !patternSet.asSpec.isSatisfiedBy(file)
        }
    
        private static FileTreeElement element(boolean isFile, String... elements) {
            [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate.go

    		return nil, err
    	}
    	gwSpec := componentSpec.(*v1alpha1.GatewaySpec)
    	k8s := gwSpec.K8S
    	switch componentName {
    	case name.IngressComponentName:
    		setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-ingressgateway.name"), gwSpec.Name)
    		if len(gwSpec.Label) != 0 {
    			setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-ingressgateway.labels"), gwSpec.Label)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

            }
            byte[] ivec = new byte[8];
            IvParameterSpec params = new IvParameterSpec(ivec);
    
            SecretKeySpec skSpec = new SecretKeySpec(key.getEncoded(), "DES");
            SecretKey sk = skSpec;
    
            cipher.init(Cipher.DECRYPT_MODE, sk, params);
    
            byte[] result;
            result = cipher.doFinal(data);
    
            decrypt = new byte[result.length];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

            this.lowestTestedVersion = GradleVersion.version(lowestTestedVersion);
        }
    
        public Spec<GradleVersion> toSpec(String constraint) {
            String trimmed = constraint.trim();
            if (trimmed.equals("current")) {
                return new Spec<GradleVersion>() {
                    @Override
                    public boolean isSatisfiedBy(GradleVersion element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/logging.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    OpView::OpView(OpSpec op)
        : op_(op),
          input_args_(op_.Inputs().begin(), op_.Inputs().end()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. test/fixedbugs/bug285.go

    // license that can be found in the LICENSE file.
    
    // Test for issue 778: Map key values that are assignment
    // compatible with the map key type must be accepted according
    // to the spec: https://golang.org/doc/go_spec.html#Indexes .
    
    package main
    
    type T2 struct {
    	x int
    }
    
    func (t *T2) f() int { return t.x }
    
    func main() {
    	type B bool
    	b := B(false)
    	mb := make(map[B]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/Specs.java

        }
    
        private static <T> Spec<T> doUnion(Collection<? extends Spec<? super T>> specs) {
            List<Spec<? super T>> filtered = new ArrayList<Spec<? super T>>(specs.size());
            for (Spec<? super T> spec : specs) {
                if (spec == SATISFIES_ALL) {
                    return satisfyAll();
                }
                if (spec != SATISFIES_NONE) {
                    filtered.add(spec);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. hack/update-openapi-spec.sh

    # limitations under the License.
    
    # Script to fetch latest openapi spec.
    # Puts the updated spec at api/openapi-spec/
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    DISCOVERY_ROOT_DIR="${KUBE_ROOT}/api/discovery"
    OPENAPI_ROOT_DIR="${KUBE_ROOT}/api/openapi-spec"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::util::require-jq
    kube::golang::setup_env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. hack/verify-openapi-spec.sh

    # We should run `hack/update-openapi-spec.sh` if OpenAPI specification is out of
    # date.
    # Usage: `hack/verify-openapi-spec.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:41 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top