Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for nodeCreated (0.2 sec)

  1. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    		// TODO(#110175): Ideally, it's supposed to register only NodeCreated, because NodeUpdated event never means to have any free ports for the Pod.
    		// But, we may miss NodeCreated event due to preCheck.
    		// See: https://github.com/kubernetes/kubernetes/issues/109437
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

        public RuleBindings() {
            rulesBySubject = new NodeAtStateIndex("rulesBySubject");
            rulesByInput = new NodeAtStateIndex("rulesByInput");
        }
    
        public void nodeCreated(ModelNodeInternal node) {
            untypedPathReferences.addNode(node);
        }
    
        public void nodeDiscovered(ModelNodeInternal node) {
            typedPathReferences.addNode(node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

        void addNode(TestNode node, ModelProjection... projections) {
            addUntypedNode(node)
            addProjections(node, projections)
        }
    
        private void addUntypedNode(TestNode node) {
            bindings.nodeCreated(node)
        }
    
        private void addProjections(TestNode node, ModelProjection... projections) {
            projections.each { node.addProjection it }
            node.setState(ModelNode.State.Discovered)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            LOGGER.debug("Project {} - Registering model element '{}' (hidden = {})", projectPath, node.getPath(), node.isHidden());
            addRuleBindings(node, actions);
            modelGraph.add(node);
            ruleBindings.nodeCreated(node);
        }
    
        private void addRuleBindings(ModelNodeInternal node, Multimap<ModelActionRole, ? extends ModelAction> actions) {
            for (Map.Entry<ModelActionRole, ? extends ModelAction> entry : actions.entries()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         */
        @Input
        public boolean isNoDeprecated() {
            return noDeprecated.getValue();
        }
    
        public void setNoDeprecated(boolean noDeprecated) {
            this.noDeprecated.setValue(noDeprecated);
        }
    
        public StandardJavadocDocletOptions noDeprecated(boolean nodeprecated) {
            setNoDeprecated(nodeprecated);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. src/syscall/fs_js.go

    var constants = jsFS.Get("constants")
    
    var uint8Array = js.Global().Get("Uint8Array")
    
    var (
    	nodeWRONLY = constants.Get("O_WRONLY").Int()
    	nodeRDWR   = constants.Get("O_RDWR").Int()
    	nodeCREATE = constants.Get("O_CREAT").Int()
    	nodeTRUNC  = constants.Get("O_TRUNC").Int()
    	nodeAPPEND = constants.Get("O_APPEND").Int()
    	nodeEXCL   = constants.Get("O_EXCL").Int()
    )
    
    type jsFile struct {
    	path    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertArrayEquals(groupTwoPackages, options.getGroups().get(groupTwoName).toArray());
        }
    
        @Test
        public void testFluentNoDeprecated() {
            assertEquals(options, options.noDeprecated());
            assertTrue(options.isNoDeprecated());
        }
    
        @Test
        public void testFluentNoDeprecatedList() {
            assertEquals(options, options.noDeprecatedList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top