Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for Decrement (0.48 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

                .forEach(snapshot -> {
                    String previousWatchedRoot = watchedDirectoryForSnapshot.remove(snapshot.getAbsolutePath());
                    decrement(previousWatchedRoot, changedWatchedDirectories);
                    snapshot.accept(new SubdirectoriesToWatchVisitor(path -> decrement(path, changedWatchedDirectories)));
                });
            addedSnapshots.stream()
                .filter(watchableHierarchies::shouldWatch)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		//
    		//0000z -> decrement ctr, b if ctr != 0 and CRbi == 0
    		//0001z -> decrement ctr, b if ctr == 0 and CRbi == 0
    		//001at -> b if CRbi == 0
    		//0100z -> decrement ctr, b if ctr != 0 and CRbi == 1
    		//0101z -> decrement ctr, b if ctr == 0 and CRbi == 1
    		//011at -> b if CRbi == 1
    		//1a00t -> decrement ctr, b if ctr != 0
    		//1a01t -> decrement ctr, b if ctr == 0
    		//1z1zz -> b always
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        address = InetAddresses.decrement(address);
    
        assertEquals(address66255, address);
    
        for (int i = 0; i < 255; i++) {
          address = InetAddresses.decrement(address);
        }
        assertEquals(address660, address);
    
        InetAddress address0000 = InetAddress.getByName("0.0.0.0");
        assertThrows(IllegalArgumentException.class, () -> InetAddresses.decrement(address0000));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/a.out.go

    	BI_FU  = 3
    )
    
    // Common values for the BO field.
    
    const (
    	BO_ALWAYS  = 20 // branch unconditionally
    	BO_BCTR    = 16 // decrement ctr, branch on ctr != 0
    	BO_NOTBCTR = 18 // decrement ctr, branch on ctr == 0
    	BO_BCR     = 12 // branch on cr value
    	BO_BCRBCTR = 8  // decrement ctr, branch on ctr != 0 and cr value
    	BO_NOTBCR  = 4  // branch on not cr value
    )
    
    // Bit settings from the CR
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/graph.go

    		delete(g.destinationEdgeIndex, n.ID())
    		return
    	}
    
    	// decrement the nodeID->destinationID refcount in the index, if the index exists
    	index := g.destinationEdgeIndex[n.ID()]
    	if index == nil {
    		return
    	}
    	if destinationEdge, ok := e.(*destinationEdge); ok {
    		index.decrement(destinationEdge.DestinationID())
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                put(BEGIN_KEY, ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
                count = new AtomicInteger(1);
            }
    
            public int increment() {
                return count.incrementAndGet();
            }
    
            public int decrement() {
                return count.decrementAndGet();
            }
        }
    
        public enum StatsAction {
            ACCESSED, //
            ACCESS_EXCEPTION, //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	// increment <p.counts> for every node in the cluster with the same <term.TopologyKey>
    	// value as that of <existingPod>'s node by the term's weight.
    	topoScore.processTerms(existingPod.PreferredAffinityTerms, incomingPod, state.namespaceLabels, existingPodNode, 1)
    
    	// For every soft pod anti-affinity term of <existingPod>, if <pod> matches the term,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/eviction.go

    					updateDeletionOptions = true
    					return nil
    				}
    			}
    			// default nil and IfHealthyBudget policy
    			if pdb.Status.CurrentHealthy >= pdb.Status.DesiredHealthy && pdb.Status.DesiredHealthy > 0 {
    				// Delete the unhealthy pod, it doesn't count towards currentHealthy and desiredHealthy and we should not decrement disruptionsAllowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. src/sync/atomic/doc.go

    // AddUint32 atomically adds delta to *addr and returns the new value.
    // To subtract a signed positive constant value c from x, do AddUint32(&x, ^uint32(c-1)).
    // In particular, to decrement x, do AddUint32(&x, ^uint32(0)).
    // Consider using the more ergonomic and less error-prone [Uint32.Add] instead.
    func AddUint32(addr *uint32, delta uint32) (new uint32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    				// we don't treat it as a violating case.
    				if _, exist := pdb.Status.DisruptedPods[pod.Name]; exist {
    					continue
    				}
    				// Only decrement the matched pdb when it's not in its <DisruptedPods>;
    				// otherwise we may over-decrement the budget number.
    				pdbsAllowed[i]--
    				// We have found a matching PDB.
    				if pdbsAllowed[i] < 0 {
    					pdbForPodIsViolated = true
    				}
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top