Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for Bind (0.09 sec)

  1. common/scripts/setup_env.sh

    if [[ -d "${HOME}/.docker" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.docker,destination=/config/.docker,readonly "
    fi
    
    # gcloud conditional host mount (needed for docker push with the gcloud auth configure-docker)
    if [[ -d "${HOME}/.config/gcloud" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.config/gcloud,destination=/config/.config/gcloud,readonly "
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

         */
        public static Type bind(Type type, Map<TypeVariable<?>, Type> bindings) {
            return bind(type, bindings::get);
        }
    
        /**
         * Binds a given type with actual type arguments
         *
         * @param type     a type to be bound
         * @param bindings a lookup function for actual types
         */
        public static Type bind(Type type, Function<TypeVariable<?>, Type> bindings) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

            def requestXml = new StreamingMarkupBuilder().bind {
                CompleteMultipartUpload(xmlns: "http://s3.amazonaws.com/doc/2006-03-01/") {
                    Part() {
                        PartNumber(1)
                        ETag(calculateEtag(file))
                    }
                }
            }
            def url = "/${bucketName}/${keyName}"
            def responseXml = new StreamingMarkupBuilder().bind {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    		bind.AddUint8('_')
    		bind.Addstring(ldr.SymExtname(r.targ))
    
    		bind.AddUint8(BIND_OPCODE_DO_BIND)
    	}
    	bind.AddUint8(BIND_OPCODE_DONE)
    	sz = Rnd(bind.Size(), 16) // make it 16-byte aligned, see the comment in doMachoLink
    	bind.Grow(sz)
    	bind.SetSize(sz)
    
    	// TODO: export table.
    	// The symbols names are encoded as a trie. I'm really too lazy to do that
    	// for now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          }
        });
      }
    
      // Bind event on elem to fn.
      function bind(event, elem, fn) {
        if (elem == null) return;
        elem.addEventListener(event, fn);
        if (event == 'click') {
          // Also enable via touch.
          elem.addEventListener('touchstart', fn);
        }
      }
    
      bind('click', elem('save-config'), showSaveDialog);
      bind('click', elem('save-cancel'), cancelDialog);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. pkg/flag/flag_test.go

    		A, B, C string
    		Env     string
    		Bool    bool
    	}
    	opts := Options{
    		B: "b-def",
    	}
    	test.SetEnvForTest(t, "TEST_ENV", "from-env")
    	fs := pflag.NewFlagSet("test", pflag.ContinueOnError)
    	Bind(fs, "a", "", "desc", &opts.A)
    	Bind(fs, "bool", "", "desc", &opts.Bool)
    	BindEnv(fs, "test-env", "", "desc", &opts.Env)
    	fs.Set("a", "a-set")
    	fs.Set("bool", "true")
    	assert.Equal(t, opts, Options{
    		A:    "a-set",
    		B:    "b-def",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/framework/framework_helpers.go

    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "PreScore")
    }
    
    // RegisterBindPlugin returns a function to register a Bind Plugin to a given registry.
    func RegisterBindPlugin(pluginName string, pluginNewFunc runtime.PluginFactory) RegisterPluginFunc {
    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "Bind")
    }
    
    // RegisterPluginAsExtensions returns a function to register a Plugin as given extensionPoints to a given registry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/types.go

    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    	// Bind is a list of plugins that should be invoked at "Bind" extension point of the scheduling framework.
    	// The scheduler call these plugins in order. Scheduler skips the rest of these plugins as soon as one returns success.
    	Bind PluginSet
    
    	// PostBind is a list of plugins that should be invoked after a pod is successfully bound.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    }
    
    // BindPlugin is an interface that must be implemented by "Bind" plugins. Bind
    // plugins are used to bind a pod to a Node.
    type BindPlugin interface {
    	Plugin
    	// Bind plugins will not be called until all pre-bind plugins have completed. Each
    	// bind plugin is called in the configured order. A bind plugin may choose whether
    	// or not to handle the given Pod. If a bind plugin chooses to handle a Pod, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top