Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,938 for dbase3 (0.2 sec)

  1. src/encoding/base32/base32.go

    // license that can be found in the LICENSE file.
    
    // Package base32 implements base32 encoding as specified by RFC 4648.
    package base32
    
    import (
    	"io"
    	"slices"
    	"strconv"
    )
    
    /*
     * Encodings
     */
    
    // An Encoding is a radix 32 encoding/decoding scheme, defined by a
    // 32-character alphabet. The most common is the "base32" encoding
    // introduced for SASL GSSAPI and standardized in RFC 4648.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    			addr:   src,
    			source: s,
    		})
    	}
    
    	bases := make([]profileSource, 0, len(s.Base))
    	for _, src := range s.Base {
    		bases = append(bases, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	p, pbase, m, mbase, save, err := grabSourcesAndBases(sources, bases, o.Fetch, o.Obj, o.UI, o.HTTPTransport)
    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    		if s.DiffBase {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue44956/base/base.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package base
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 205 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/base-dependency-insight.out

    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/Base.java

    import java.io.Serializable;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Simple base class to verify that we handle generics correctly. */
    @GwtCompatible
    class Base implements Comparable<Base>, Serializable {
      private final String s;
    
      public Base(String s) {
        this.s = s;
      }
    
      @Override
      public int hashCode() { // delegate to 's'
        return s.hashCode();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 22:29:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. proguard/base.pro

    # FinalizableReferenceQueue is unused.
    -keepnames class com.google.common.base.internal.Finalizer {
      *** startFinalizer(...);
    }
    # However, it cannot "spot" that this method needs to be kept IF the class is.
    -keepclassmembers class com.google.common.base.internal.Finalizer {
      *** startFinalizer(...);
    }
    -keepnames class com.google.common.base.FinalizableReference {
      void finalizeReferent();
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. cluster/gce/gci/testdata/kube-apiserver/base.template

    {{ define "base" }}
    readonly KUBE_HOME={{.}}
    readonly KUBE_API_SERVER_LOG_PATH=${KUBE_HOME}/kube-apiserver.log
    readonly KUBE_API_SERVER_AUDIT_LOG_PATH=${KUBE_HOME}/kube-apiserver-audit.log
    readonly CLOUD_CONFIG_OPT=--cloud-config=/etc/gce.conf
    readonly CA_CERT_BUNDLE_PATH=/foo/bar
    readonly APISERVER_SERVER_CERT_PATH=/foo/bar
    readonly APISERVER_SERVER_KEY_PATH=/foo/bar
    readonly APISERVER_CLIENT_CERT_PATH=/foo/bar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. pkg/monitoring/base.go

    John Howard <******@****.***> 1689625552 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. fastapi/security/base.py

    Sebastián Ramírez <******@****.***> 1544195536 +0400
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Dec 07 15:12:16 UTC 2018
    - 141 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/base.css

    Laura Kassovic <******@****.***> 1716614102 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top