Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,040 for populator (0.2 sec)

  1. android/guava/src/com/google/common/math/StatsAccumulator.java

      }
    
      /**
       * Returns the <a href="http://en.wikipedia.org/wiki/Variance#Sample_variance">unbiased sample
       * variance</a> of the values. If this dataset is a sample drawn from a population, this is an
       * unbiased estimator of the population variance of the population. The count must be greater than
       * one.
       *
       * <p>This is not guaranteed to return zero when the dataset consists of the same value multiple
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    // TensorFlow and populated by the plug-in.
    typedef struct TF_ProfilerRegistrationParams {
      size_t struct_size;
      void* ext;  // reserved for future use
    
      // TensorFlow Profiler C API version.
      int32_t major_version;
      int32_t minor_version;
      int32_t patch_version;
    
      // [in/out] Memory owned by core but attributes within are populated by the
      // plugin.
      TP_Profiler* profiler;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. src/crypto/x509/pkix/pkix.go

    	// distinguished names. Values override any attributes with the same OID.
    	// The ExtraNames field is not populated when parsing, see Names.
    	ExtraNames []AttributeTypeAndValue
    }
    
    // FillFromRDNSequence populates n from the provided [RDNSequence].
    // Multi-entry RDNs are flattened, all entries are added to the
    // relevant n fields, and the grouping is not preserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/PairedStats.java

       * R*R)} of the population standard deviation of {@code y}, where {@code R} is the Pearson's
       * correlation coefficient (as given by {@link #pearsonsCorrelationCoefficient()}).
       *
       * <p>The corresponding root-mean-square error in {@code x} as a function of {@code y} is a
       * fraction {@code sqrt(1/(R*R) - 1)} of the population standard deviation of {@code x}. This fit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. internal/config/identity/openid/jwt.go

    	pk.Lock()
    	defer pk.Unlock()
    
    	pk.pkMap[keyID] = key
    }
    
    func (pk *publicKeys) get(kid string) interface{} {
    	pk.RLock()
    	defer pk.RUnlock()
    	return pk.pkMap[kid]
    }
    
    // PopulatePublicKey - populates a new publickey from the JWKS URL.
    func (r *Config) PopulatePublicKey(arn arn.ARN) error {
    	pCfg := r.arnProviderCfgsMap[arn]
    	if pCfg.JWKS.URL == nil || pCfg.JWKS.URL.String() == "" {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

       * R*R)} of the population standard deviation of {@code y}, where {@code R} is the Pearson's
       * correlation coefficient (as given by {@link #pearsonsCorrelationCoefficient()}).
       *
       * <p>The corresponding root-mean-square error in {@code x} as a function of {@code y} is a
       * fraction {@code sqrt(1/(R*R) - 1)} of the population standard deviation of {@code x}. This fit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    
    go test -fuzz=FuzzTarget -fuzztime=10x .
    stdout 'entries: 5'
    
    -- go.mod --
    module fuzztest
    
    go 1.17
    
    -- fuzz_test.go --
    package fuzz
    
    import "testing"
    
    func FuzzTarget(f *testing.F) {
        f.Add(int(0))
        f.Fuzz(func(t *testing.T, _ int) {})
    }
    
    -- populate/main.go --
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/module.cc

        tf::libtf::List user_list;
        // TODO(b/191267013): Populate with values.
        return user_list;
      }
      if (identifier == "trackable_dict_wrapper") {
        tf::libtf::Dictionary user_dict;
        // TODO(b/191267013): Populate with values.
        return user_dict;
      }
      if (identifier == "signature_map") {
        tf::libtf::Dictionary signature_map;
        // TODO(b/191267013): Populate with values.
        return signature_map;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  9. src/go/types/api.go

    }
    
    func (info *Info) recordTypes() bool {
    	return info.Types != nil
    }
    
    // TypeOf returns the type of expression e, or nil if not found.
    // Precondition: the Types, Uses and Defs maps are populated.
    func (info *Info) TypeOf(e ast.Expr) Type {
    	if t, ok := info.Types[e]; ok {
    		return t.Type
    	}
    	if id, _ := e.(*ast.Ident); id != nil {
    		if obj := info.ObjectOf(id); obj != nil {
    			return obj.Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/Lmhosts.java

                            populate(r, tc);
                        }
                    }
                    result = this.table.get(name);
                }
            }
            catch ( IOException fnfe ) {
                log.error("Could not read lmhosts " + tc.getConfig().getLmHostsFileName(), fnfe); //$NON-NLS-1$
            }
            return result;
        }
    
    
        void populate ( Reader r, CIFSContext tc ) throws IOException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.1K bytes
    - Viewed (0)
Back to top