Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Decrement (0.29 sec)

  1. doc/go_spec.html

    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    <h3 id="IncDec_statements">IncDec statements</h3>
    
    <p>
    The "++" and "--" statements increment or decrement their operands
    by the untyped <a href="#Constants">constant</a> <code>1</code>.
    As with an assignment, the operand must be <a href="#Address_operators">addressable</a>
    or a map index expression.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. ChangeLog.md

    - [`KT-66904`](https://youtrack.jetbrains.com/issue/KT-66904) K2: possible NPE when reassigning captured variables
    - [`KT-57031`](https://youtrack.jetbrains.com/issue/KT-57031) operator assignment, increment/decrement should be considered as variable reassigning in terms of DFA. green in K1 -> red in K2 for unsound code
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    		return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
    	}
    	return &http2WindowUpdateFrame{
    		http2FrameHeader: fh,
    		Increment:        inc,
    	}, nil
    }
    
    // WriteWindowUpdate writes a WINDOW_UPDATE frame.
    // The increment value must be between 1 and 2,147,483,647, inclusive.
    // If the Stream ID is zero, the window update applies to the
    // connection as a whole.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - etcd: Built image for `v3.5.11`.
       ([#122233](https://github.com/kubernetes/kubernetes/pull/122233), [@mzaian](https://github.com/mzaian))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        body_fn(loc, block->getArgument(0),
                ArrayRef<Value>(block->getArguments().begin() + 1,
                                block->getArguments().end()),
                &new_values, builder);
    
        // Increment the loop induction variable by one.
        auto one =
            builder->create<mhlo::ConstantOp>(loc, builder->getI32IntegerAttr(1));
        auto scalar_broadcast_dims = builder->getDenseI64ArrayAttr({});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.15.md

    - Fixes conversion error in multi-version custom resources that could cause metadata.generation to increment on no-op patches or updates of a custom resource. ([#88995](https://github.com/kubernetes/kubernetes/pull/88995), [@liggitt](https://github.com/liggitt)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // accept traffic.
      optional bool ready = 4;
    
      // RestartCount holds the number of times the container has been restarted.
      // Kubelet makes an effort to always increment the value, but there
      // are cases when the state may be lost due to node restarts and then the value
      // may be reset to 0. The value is never negative.
      optional int32 restartCount = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// accept traffic.
    	Ready bool
    	// RestartCount holds the number of times the container has been restarted.
    	// Kubelet makes an effort to always increment the value, but there
    	// are cases when the state may be lost due to node restarts and then the value
    	// may be reset to 0. The value is never negative.
    	RestartCount int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"restartCount":       "RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	}
    	s.defvars[b.ID] = s.vars
    	s.curBlock = nil
    	s.vars = nil
    	if b.LackingPos() {
    		// Empty plain blocks get the line of their successor (handled after all blocks created),
    		// except for increment blocks in For statements (handled in ssa conversion of OFOR),
    		// and for blocks ending in GOTO/BREAK/CONTINUE.
    		b.Pos = src.NoXPos
    	} else {
    		b.Pos = s.lastPos
    	}
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top