Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for incremented (0.2 sec)

  1. src/regexp/syntax/parse.go

    		re.Op = OpLiteral
    		re.Rune = re.Rune[:1]
    		re.Flags = p.flags | FoldCase
    	} else {
    		// Incremental concatenation.
    		p.maybeConcat(-1, 0)
    	}
    
    	p.stack = append(p.stack, re)
    	p.checkLimits(re)
    	return re
    }
    
    // maybeConcat implements incremental concatenation
    // of literal runes into string nodes. The parser calls this
    // before each push, so only the top fragment of the stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/runtime/map.go

    	*(**bmap)(add(unsafe.Pointer(b), uintptr(t.BucketSize)-goarch.PtrSize)) = ovf
    }
    
    func (b *bmap) keys() unsafe.Pointer {
    	return add(unsafe.Pointer(b), dataOffset)
    }
    
    // incrnoverflow increments h.noverflow.
    // noverflow counts the number of overflow buckets.
    // This is used to trigger same-size map growth.
    // See also tooManyOverflowBuckets.
    // To keep hmap small, noverflow is a uint16.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    	}
    	return jobCtx.job, needsFlush, rmErr
    }
    
    // cleanUncountedPodsWithoutFinalizers removes the Pod UIDs from
    // .status.uncountedTerminatedPods for which the finalizer was successfully
    // removed and increments the corresponding status counters.
    // Returns whether there was any status change.
    func cleanUncountedPodsWithoutFinalizers(status *batch.JobStatus, uidsWithFinalizer sets.Set[string]) bool {
    	updated := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    The above example demonstrates the basic syntax and also highlights two major limitations of using the `copy()` method:
    
    1. The `copy()` method is not <<incremental_build.adoc#incremental_build,incremental>>.
    The example's `copyMethod` task will _always_ execute because it has no information about what files make up the task's inputs.
    You have to define the task inputs and outputs manually.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    		// before the signal stack is set, as glibc doesn't allow us to block
    		// SIGSETXID. So a signal may land on the current stack and clobber
    		// the content below the SP. We store the LR again after the SP is
    		// decremented.
    		prologue = obj.Appendp(prologue, newprog)
    		prologue.As = AMOV
    		prologue.From = obj.Addr{Type: obj.TYPE_REG, Reg: REG_LR}
    		prologue.To = obj.Addr{Type: obj.TYPE_MEM, Reg: REG_SP, Offset: 0}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    You should now use the `InputChanges` type instead.
    Please refer to the <<custom_tasks.adoc#sec:implementing_an_incremental_task, userguide section about implementing incremental tasks for more details>>.
    
    === Potential breaking changes
    
    ==== Version catalog only accepts a single TOML import file
    
    Only a single file will be accepted when using a `from` import method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    			if err := dsc.podControl.DeletePod(ctx, ds.Namespace, podsToDelete[ix], ds); err != nil {
    				dsc.expectations.DeletionObserved(logger, dsKey)
    				if !apierrors.IsNotFound(err) {
    					logger.V(2).Info("Failed deletion, decremented expectations for daemon set", "daemonset", klog.KObj(ds))
    					errCh <- err
    					utilruntime.HandleError(err)
    				}
    			}
    		}(i)
    	}
    	deleteWait.Wait()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    * Support for several source languages.
    * Support for building different variants of the same software, for different architectures, operating systems, or for any purpose.
    * Incremental parallel compilation, precompiled headers.
    * Dependency management between native software components.
    * Unit test execution.
    * Generate Visual studio solution and project files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/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: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	hc.trafficSecret = secret
    	hc.level = level
    	key, iv := suite.trafficKey(secret)
    	hc.cipher = suite.aead(key, iv)
    	for i := range hc.seq {
    		hc.seq[i] = 0
    	}
    }
    
    // incSeq increments the sequence number.
    func (hc *halfConn) incSeq() {
    	for i := 7; i >= 0; i-- {
    		hc.seq[i]++
    		if hc.seq[i] != 0 {
    			return
    		}
    	}
    
    	// Not allowed to let sequence number wrap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top