Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 205 for selectznz (0.18 sec)

  1. src/crypto/internal/nistec/fiat/generate.go

    			"--package-name", "fiat", "--no-prefix-fiat", c.Prefix, "64", c.Prime,
    			"mul", "square", "add", "sub", "one", "from_montgomery", "to_montgomery",
    			"selectznz", "to_bytes", "from_bytes")
    		cmd.Stderr = os.Stderr
    		out, err := cmd.Output()
    		if err != nil {
    			log.Fatal(err)
    		}
    		out, err = format.Source(out)
    		if err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p256_fiat64.go

    //
    // curve description: p256
    //
    // machine_wordsize = 64 (from "64")
    //
    // requested operations: mul, square, add, sub, one, from_montgomery, to_montgomery, selectznz, to_bytes, from_bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p224_fiat64.go

    //
    // curve description: p224
    //
    // machine_wordsize = 64 (from "64")
    //
    // requested operations: mul, square, add, sub, one, from_montgomery, to_montgomery, selectznz, to_bytes, from_bytes
    //
    // m = 0xffffffffffffffffffffffffffffffff000000000000000000000001 (from "2^224 - 2^96 + 1")
    //
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p384_fiat64.go

    //
    // curve description: p384
    //
    // machine_wordsize = 64 (from "64")
    //
    // requested operations: mul, square, add, sub, one, from_montgomery, to_montgomery, selectznz, to_bytes, from_bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
  5. pkg/collateral/predicate.go

    type Predicates struct {
    	SelectEnv    SelectEnvFn
    	SelectMetric SelectMetricFn
    }
    
    // SelectEnvFn is a predicate function for selecting environment variables when generating collateral documents.
    type SelectEnvFn func(env.Var) bool
    
    // SelectMetricFn is a predicate function for selecting metrics when generating collateral documents.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p521_fiat64.go

    //
    // curve description: p521
    //
    // machine_wordsize = 64 (from "64")
    //
    // requested operations: mul, square, add, sub, one, from_montgomery, to_montgomery, selectznz, to_bytes, from_bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  7. pkg/collateral/control.go

    	return strings.Replace(id, ".", "-", -1)
    }
    
    func (g *generator) genVars(root *cobra.Command, selectFn SelectEnvFn) {
    	if selectFn == nil {
    		selectFn = DefaultSelectEnvFn
    	}
    
    	envVars := env.VarDescriptions()
    
    	count := 0
    	for _, v := range envVars {
    		if v.Hidden {
    			continue
    		}
    		if !selectFn(v) {
    			continue
    		}
    		count++
    	}
    
    	if count == 0 {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. pkg/controller/util/selectors/bimultimap.go

    	}
    	selecting := m.selectingByLabeled[labelsKey]
    	selecting.refCount++
    	for _, sObject := range selecting.objects {
    		// Associate labeled with selecting.
    		labeled := m.labeledBySelecting[sObject.selectorKey]
    		labeled.objects[labeledObject.key] = labeledObject
    	}
    }
    
    // Delete removes a labeled object and incoming associations.
    func (m *BiMultimap) Delete(key Key) {
    	m.mux.Lock()
    	defer m.mux.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/compact/compact.go

    //
    // Common language tags (at least all for which locale information is defined
    // in CLDR) are assigned a unique index. Each Tag is associated with such an
    // ID for selecting language-related resources (such as translations) as well
    // as one for selecting regional defaults (currency, number formatting, etc.)
    //
    // It may want to export this functionality at some point, but at this point
    // this is only available for use within x/text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. releasenotes/notes/fix-se-stale-ep.yaml

    # issue is a list of GitHub issues resolved in this note.
    issue:
      - https://github.com/istio/istio/issues/35404
      - 35404
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 18:58:19 UTC 2021
    - 293 bytes
    - Viewed (0)
Back to top