Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for binder (0.11 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    /*
    Copyright 2017 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            private final RuleBinder binder;
            private boolean bindInputs;
    
            public RunModelAction(ModelPath path, RuleBinder binder) {
                super(path);
                this.binder = binder;
            }
    
            @Override
            public String toString() {
                return "run action for " + binder.getSubjectBinding().getPredicate() + ", rule: " + binder.getDescriptor() + ", state: " + state;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    				Score:       int64(point.Score) * (framework.MaxNodeScore / config.MaxCustomPriorityScore),
    			})
    		}
    		scorer = buildScorerFunction(shape)
    	}
    	return &VolumeBinding{
    		Binder:    binder,
    		PVCLister: pvcInformer.Lister(),
    		scorer:    scorer,
    		fts:       fts,
    	}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

            final NodeAtStateIndex index;
            final RuleBinder owner;
    
            public Reference(RuleBinder owner, NodeAtStateIndex index, ModelBinding binding) {
                this.owner = owner;
                this.index = index;
                this.binding = binding;
            }
    
            @Override
            public String toString() {
                return binding + " in " + index.name;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/fake_extender.go

    		result = append(result, extenderv1.HostPriority{Host: host, Score: score})
    	}
    	return &result, f.Weight, nil
    }
    
    // Bind implements the extender Bind function.
    func (f *FakeExtender) Bind(binding *v1.Binding) error {
    	if f.Binder != nil {
    		return f.Binder()
    	}
    	if len(f.FilteredNodes) != 0 {
    		for _, node := range f.FilteredNodes {
    			if node.Node().Name == binding.Target.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:persistent-volume-binder
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:persistent-volume-binder
      subjects:
      - kind: ServiceAccount
        name: persistent-volume-binder
        namespace: kube-system
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
      metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

                    container.addComponent(mock(Maven.class), "org.apache.maven.Maven");
    
                    ((DefaultPlexusContainer) container)
                            .addPlexusInjector(Collections.emptyList(), binder -> binder.bind(EventSpyDispatcher.class)
                                    .toInstance(eventSpyDispatcherMock));
                }
            };
    
            CliRequest cliRequest = new CliRequest(new String[] {}, null);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. maven-core/src/main/resources/META-INF/maven/extension.xml

    <?xml version="1.0" encoding="UTF-8"?>
    
    <!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/core.go

    /*
    Copyright 2016 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top