Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 410 for rebind (0.15 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    // RecordFlags contains all flags associated with the "--record" operation
    type RecordFlags struct {
    	// Record indicates the state of the recording flag.  It is a pointer so a caller can opt out or rebind
    	Record *bool
    
    	changeCause string
    }
    
    // ToRecorder returns a ChangeCause recorder if --record=false was not
    // explicitly given by the user
    func (f *RecordFlags) ToRecorder() (Recorder, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                    Binding<Object> bind = ReflectionUtils.bindingFromMethod(method).scope(scope);
                    for (Type t : Types.getAllSuperTypes(returnType)) {
                        if (types == null || types.contains(Types.getRawType(t))) {
                            bind(Key.ofType(t, qualifier), bind);
                            if (qualifier != null) {
                                bind(Key.ofType(t), bind);
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/examples/prebind/prebind.go

    const Name = "stateless-prebind-plugin-example"
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (sr StatelessPreBindExample) Name() string {
    	return Name
    }
    
    // PreBind is the functions invoked by the framework at "prebind" extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/behind-a-proxy.md

    <img src="/img/tutorial/behind-a-proxy/image01.png">
    
    But if we access the docs UI at the "official" URL using the proxy with port `9999`, at `/api/v1/docs`, it works correctly! 🎉
    
    You can check it at <a href="http://127.0.0.1:9999/api/v1/docs" class="external-link" target="_blank">http://127.0.0.1:9999/api/v1/docs</a>:
    
    <img src="/img/tutorial/behind-a-proxy/image02.png">
    
    Right as we wanted it. ✔️
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/behind-a-proxy.md

    <img src="/img/tutorial/behind-a-proxy/image01.png">
    
    ✋️ 🚥 👥 🔐 🩺 🎚 "🛂" 📛 ⚙️ 🗳 ⏮️ ⛴ `9999`, `/api/v1/docs`, ⚫️ 👷 ☑ ❗ 👶
    
    👆 💪 ✅ ⚫️ <a href="http://127.0.0.1:9999/api/v1/docs" class="external-link" target="_blank">http://127.0.0.1:9999/api/v1/docs</a>:
    
    <img src="/img/tutorial/behind-a-proxy/image02.png">
    
    ▶️️ 👥 💚 ⚫️. 👶 👶
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/behind-a-proxy.md

    Sie können das unter <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> sehen:
    
    <img src="/img/tutorial/behind-a-proxy/image01.png">
    
    Wenn wir jedoch unter der „offiziellen“ URL, über den Proxy mit Port `9999`, unter `/api/v1/docs`, auf die Dokumentationsoberfläche zugreifen, funktioniert es ordnungsgemäß! 🎉
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. docs/zh/docs/advanced/behind-a-proxy.md

    <img src="/img/tutorial/behind-a-proxy/image01.png">
    
    但输入**官方**链接 `/api/v1/docs`,并使用端口 `9999` 访问 API 文档,就能正常运行了!🎉
    
    输入 <a href="http://127.0.0.1:9999/api/v1/docs" class="external-link" target="_blank">http://127.0.0.1:9999/api/v1/docs 查看文档:</a>
    
    <img src="/img/tutorial/behind-a-proxy/image02.png">
    
    一切正常。 ✔️
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependenciesSpec.java

         * @return a mutable plugin dependency specification that can be used to further refine the dependency
         */
        PluginDependencySpec id(String id);
    
        /**
         * Adds a plugin dependency using a notation coming from a version catalog.
         * The resulting dependency spec can be refined with a version overriding
         * what the version catalog provides.
         * @param notation the plugin reference
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 16 17:46:02 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/examples/stateful/stateful.go

    	mp.executionPoints = nil
    }
    
    // PreBind is the function invoked by the framework at "prebind" extension
    // point.
    func (mp *MultipointExample) PreBind(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) *framework.Status {
    	// PreBind could be called concurrently for different pods.
    	mp.mu.Lock()
    	defer mp.mu.Unlock()
    	mp.executionPoints = append(mp.executionPoints, "pre-bind")
    	if pod == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pkg/scheduler/testing/framework/framework_helpers.go

    		return &plugins.PreFilter
    	case "PreScore":
    		return &plugins.PreScore
    	case "Score":
    		return &plugins.Score
    	case "Bind":
    		return &plugins.Bind
    	case "Reserve":
    		return &plugins.Reserve
    	case "Permit":
    		return &plugins.Permit
    	case "PreBind":
    		return &plugins.PreBind
    	case "PostBind":
    		return &plugins.PostBind
    	default:
    		return nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top