Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for bindat (0.26 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RegistrySpec.groovy

                def binder = new RuleBinder(subjectReference, inputReferences, action, [])
                if (subjectReferenceBindingPath) {
                    binder.subjectBinding.boundTo = new TestNode(subjectReferenceBindingPath, Object)
                }
                boundInputReferencePaths.each { index, path ->
                    binder.inputBindings[index].boundTo = new TestNode(path, Object)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. hack/verify-gofmt.sh

            -o -wholename './release' \
            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename '*/testdata/*' \
            -o -wholename '*/bindata.go' \
          \) -prune \
        \) -name '*.go'
    }
    
    # gofmt exits with non-zero exit code if it finds a problem unrelated to
    # formatting (e.g., a file does not parse correctly). Without "|| true" this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/fake_binder.go

    */
    
    package volumebinding
    
    import (
    	"context"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/klog/v2"
    )
    
    // FakeVolumeBinderConfig holds configurations for fake volume binder.
    type FakeVolumeBinderConfig struct {
    	AllBound    bool
    	FindReasons ConflictReasons
    	FindErr     error
    	AssumeErr   error
    	BindErr     error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 03:28:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. .gitignore

    kubernetes.tar.gz
    
    # Phony test files used as part of coverage generation
    zz_generated_*_test.go
    
    # Just in time generated data in the source, should never be committed
    /test/e2e/generated/bindata.go
    
    # This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored
    !\.drone\.sec
    
    /bazel-*
    *.pyc
    
    # generated by verify-vendor.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. hack/boilerplate/boilerplate.py

    
    skipped_names = [
        "third_party",
        "_output",
        ".git",
        "cluster/env.sh",
        "vendor",
        "testdata",
        "test/e2e/generated/bindata.go",
        "hack/boilerplate/test",
        "staging/src/k8s.io/kubectl/pkg/generated/bindata.go",
    ]
    
    
    def normalize_files(files):
        newfiles = []
        for pathname in files:
            if any(x in pathname for x in skipped_names):
                continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		rst.writeLifetime(rst.base62Number())
    	} else if rst.str[0] == 'K' {
    		rst.advance(1)
    		rst.demangleConst()
    	} else {
    		rst.demangleType()
    	}
    }
    
    // binder parses an optional:
    //
    //	<binder> = "G" <base-62-number>
    func (rst *rustState) binder() {
    	if len(rst.str) < 1 || rst.str[0] != 'G' {
    		return
    	}
    	rst.advance(1)
    
    	binderLifetimes := rst.base62Number() + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/MethodHandleBasedServiceMethod.java

            super(target);
            this.method = LOOKUP.unreflect(target);
        }
    
        @Override
        public Object invoke(Object target, @Nullable Object... args) {
            try {
                return method.bindTo(target).invokeWithArguments(args);
            } catch (Throwable e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultbinder/default_binder_test.go

    				return true, gotBinding, nil
    			})
    
    			fh, err := frameworkruntime.NewFramework(ctx, nil, nil, frameworkruntime.WithClientSet(client))
    			if err != nil {
    				t.Fatal(err)
    			}
    			binder := &DefaultBinder{handle: fh}
    			status := binder.Bind(ctx, nil, testPod, testNode)
    			if got := status.AsError(); (tt.injectErr != nil) != (got != nil) {
    				t.Errorf("got error %q, want %q", got, tt.injectErr)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

        }
    
        public static class InstalledSwiftc extends InstalledToolChain {
            private final File binDir;
            private final VersionNumber compilerVersion;
    
            public InstalledSwiftc(File binDir, VersionNumber compilerVersion) {
                super(ToolFamily.SWIFTC, compilerVersion);
                this.binDir = binDir;
                this.compilerVersion = compilerVersion;
            }
    
            public File tool(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. release/downloadIstioCandidate.sh

    printf "\n"
    BINDIR="$(cd "$NAME/bin" && pwd)"
    printf "Next Steps:\n"
    printf "See https://istio.io/latest/docs/setup/install/ to add Istio to your Kubernetes cluster.\n"
    printf "\n"
    printf "To configure the istioctl client tool for your workstation,\n"
    printf "add the %s directory to your environment path variable with:\n" "$BINDIR"
    printf "\t export PATH=\"\$PATH:%s\"\n" "$BINDIR"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top