Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for incremented (0.24 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// ordinals controls the numbering of replica indices in a StatefulSet. The
    	// default ordinals behavior assigns a "0" index to the first replica and
    	// increments the index by one for each additional replica requested. Using
    	// the ordinals field requires the StatefulSetStartOrdinal feature gate to be
    	// enabled, which is beta.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    	case token.ARROW:
    		// send statement
    		arrow := p.pos
    		p.next() // consume "<-"
    		y := p.parseRhs()
    		return &ast.SendStmt{x[0], arrow, y}
    
    	case token.INC, token.DEC:
    		// increment or decrement
    		s := &ast.IncDecStmt{x[0], p.pos, p.tok}
    		p.next() // consume "++" or "--"
    		return s
    	}
    
    	// expression
    	return &ast.ExprStmt{x[0]}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Now we retain restart count of container as a container label. Each time a container
    	// restarts, pod will read the restart count from the registered dead container, increment
    	// it to get the new restart count, and then add a label with the new restart count on
    	// the newly started container.
    	// However, there are some limitations of this method:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    void AddCtrlEdge(const Scope& scope, Operation a, Output b) {
      AddCtrlEdge(scope, a, b.op());
    }
    
    // Tests that we pick a good clustering for graphs that have an integer
    // increment operation control dependent on gradient update operations.
    TEST(XlaCompilationTest, IterationIncrementAndGroupDeps) {
      Scope scope = Scope::NewRootScope().ExitOnError();
    
      Output iter =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VSEL X1L, X2L, SEL1, X1L // Select if idx matched
    	VSEL X1H, X2H, SEL1, X1H
    	VSEL Y1L, Y2L, SEL1, Y1L
    	VSEL Y1H, Y2H, SEL1, Y1H
    
    	VADDUBM SEL2, ONE, SEL2    // Increment SEL2 bytes by 1
    	ADD     $64, P1ptr         // Next chunk
    	BDNZ	loop_select
    
    	STXVD2X X1H, (P3ptr+R0)
    	STXVD2X X1L, (P3ptr+R16)
    	STXVD2X Y1H, (P3ptr+R17)
    	STXVD2X Y1L, (P3ptr+R18)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Sets up the implementation strategy for SAM (single abstract method) conversion to always generate anonymous classes, instead of using the `invokedynamic` JVM instruction.
    This is to provide a better support for configuration cache and incremental build.
    See link:https://youtrack.jetbrains.com/issue/KT-44912[KT-44912] in the Kotlin issue tracker for more information.
    
    `-Xjsr305=strict`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	markStartTime int64
    
    	// dedicatedMarkWorkersNeeded is the number of dedicated mark workers
    	// that need to be started. This is computed at the beginning of each
    	// cycle and decremented as dedicated mark workers get started.
    	dedicatedMarkWorkersNeeded atomic.Int64
    
    	// idleMarkWorkers is two packed int32 values in a single uint64.
    	// These two values are always updated simultaneously.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	pod1 := generatePod("128.0.0.1", "pod1", "nsA", "", "node1", map[string]string{"app": "prod-app"}, map[string]string{})
    	pods := []*corev1.Pod{pod1}
    	addPods(t, controller, fx, pods...)
    
    	// 1. incremental eds for normal service endpoint update
    	createServiceWait(controller, "svc1", "nsa", nil, nil,
    		[]int32{8080}, map[string]string{"app": "prod-app"}, t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    // size `nx`.
    //
    // Gradient nodes are automatically named under the "gradients/" prefix. To
    // guarantee name uniqueness, subsequent calls to the same graph will
    // append an incremental tag to the prefix: "gradients_1/", "gradients_2/", ...
    // See TF_AddGradientsWithPrefix, which provides a means to specify a custom
    // name prefix for operations added to a graph to compute the gradients.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Configuration cache entry reused.
    ----
    
    If it succeeds on your build, congratulations, you can now try with more useful tasks.
    You should target your development loop.
    A good example is running tests after making incremental changes.
    
    If any problem is found caching or reusing the configuration, an HTML report is generated to help you diagnose and fix the issues. The report also shows detected build configuration inputs like
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top