Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,296 for mod$ (0.1 sec)

  1. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    // div by constant
    (DIVVU x (MOVVconst [1])) => x
    (DIVVU x (MOVVconst [c])) && isPowerOfTwo64(c) => (SRLVconst [log64(c)] x)
    (REMVU _ (MOVVconst [1])) => (MOVVconst [0])                       // mod
    (REMVU x (MOVVconst [c])) && isPowerOfTwo64(c) => (ANDconst [c-1] x) // mod
    
    // generic simplifications
    (ADDV x (NEGV y)) => (SUBV x y)
    (SUBV x x) => (MOVVconst [0])
    (SUBV (MOVVconst [0]) x) => (NEGV x)
    (AND x x) => x
    (OR  x x) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  2. pilot/pkg/credentials/kube/secrets_test.go

    	secretsLocal := []runtime.Object{
    		tlsCert,
    		tlsMtlsCert,
    		tlsMtlsCertSplit,
    		tlsMtlsCertSplitCa,
    	}
    	tlsCertModified := makeSecret("tls", map[string]string{
    		TLSSecretCert: "tls-cert-mod", TLSSecretKey: "tls-key",
    	}, corev1.SecretTypeTLS)
    	secretsRemote := []runtime.Object{
    		tlsCertModified,
    		genericCert,
    		genericMtlsCert,
    		genericMtlsCertSplit,
    		genericMtlsCertSplitCa,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    			// on the parent user, so we load them. This is not needed for the
    			// initial server startup, however, it is needed for the case where
    			// the STS account's policy mapping (for example in LDAP mode) may
    			// be changed and the user's policy mapping in memory is stale
    			// (because the policy change notification was missed by the current
    			// server).
    			//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. cmd/erasure-metadata_test.go

    			if ok1 != ok2 {
    				t.Errorf("Expected %s, got %s", test.expectedErr, err)
    			}
    			if test.succmodTimes != nil {
    				if !test.expectedSuccModTime.Equal(fi.SuccessorModTime) {
    					t.Errorf("Expected successor mod time to be %v but got %v", test.expectedSuccModTime, fi.SuccessorModTime)
    				}
    				if test.expectedIsLatest != fi.IsLatest {
    					t.Errorf("Expected IsLatest to be %v but got %v", test.expectedIsLatest, fi.IsLatest)
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 20:57:37 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Booleans.java

      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Booleans.asList(array),
       * distance)}, but is somewhat faster.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Booleans.java

      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Booleans.asList(array),
       * distance)}, but is somewhat faster.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Ints.java

      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Ints.asList(array),
       * distance)}, but is considerably faster and avoids allocation and garbage collection.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Ints.java

      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Ints.asList(array),
       * distance)}, but is considerably faster and avoids allocation and garbage collection.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Changes to the semantics in this file require approval from rsc.
    
    import (
    	"errors"
    	"fmt"
    	"path"
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/mod/semver"
    )
    
    // A Version (for clients, a module.Version) is defined by a module path and version pair.
    // These are stored in their plain (unescaped) form.
    type Version struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/math/big/natdiv.go

    		return
    	case m == 0:
    		q = z[:0] // result is 0
    		return
    	}
    	// m > 0
    	z = z.make(m)
    	r = divWVW(z, 0, x, y)
    	q = z.norm()
    	return
    }
    
    // modW returns x % d.
    func (x nat) modW(d Word) (r Word) {
    	// TODO(agl): we don't actually need to store the q value.
    	var q nat
    	q = q.make(len(x))
    	return divWVW(q, 0, x, d)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top