Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 400 for stringVar (0.15 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

                    while ( parts.hasMoreElements() ) {
                        Object part = parts.nextElement();
                        DERGeneralString stringPart = ASN1Util.as(DERGeneralString.class, part);
                        nameBuilder.append(stringPart.getString());
                        if ( parts.hasMoreElements() )
                            nameBuilder.append('/');
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/internal/coverage/encodemeta/encode.go

    // instrumentation is turned on.
    
    import (
    	"bytes"
    	"crypto/md5"
    	"encoding/binary"
    	"fmt"
    	"hash"
    	"internal/coverage"
    	"internal/coverage/stringtab"
    	"internal/coverage/uleb128"
    	"io"
    	"os"
    )
    
    type CoverageMetaDataBuilder struct {
    	stab    stringtab.Writer
    	funcs   []funcDesc
    	tmp     []byte // temp work slice
    	h       hash.Hash
    	pkgpath uint32
    	pkgname uint32
    	modpath uint32
    	debug   bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 17:16:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/internal/coverage/encodemeta/encodefile.go

    	"fmt"
    	"internal/coverage"
    	"internal/coverage/stringtab"
    	"io"
    	"os"
    	"unsafe"
    )
    
    // This package contains APIs and helpers for writing out a meta-data
    // file (composed of a file header, offsets/lengths, and then a series of
    // meta-data blobs emitted by the compiler, one per Go package).
    
    type CoverageMetaFileWriter struct {
    	stab   stringtab.Writer
    	mfname string
    	w      *bufio.Writer
    	tmp    []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/op_or_arg_name_mapper.h

    #define TENSORFLOW_COMPILER_MLIR_OP_OR_ARG_NAME_MAPPER_H_
    
    #include <string>
    
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/PointerUnion.h"
    #include "llvm/ADT/StringMap.h"
    #include "llvm/ADT/StringRef.h"
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    
    namespace tensorflow {
    
    // PointerUnion for operation and value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    )
    
    func (sf *sourceFile) error() string {
    	return sf.d.stringAt(sf.pos + sourceFileError)
    }
    func (sf *sourceFile) parseError() string {
    	return sf.d.stringAt(sf.pos + sourceFileParseError)
    }
    func (sf *sourceFile) synopsis() string {
    	return sf.d.stringAt(sf.pos + sourceFileSynopsis)
    }
    func (sf *sourceFile) name() string {
    	return sf.d.stringAt(sf.pos + sourceFileName)
    }
    func (sf *sourceFile) pkgName() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/internal/coverage/decodecounter/decodecounterfile.go

    	"fmt"
    	"internal/coverage"
    	"internal/coverage/slicereader"
    	"internal/coverage/stringtab"
    	"io"
    	"os"
    	"strconv"
    	"unsafe"
    )
    
    // This file contains helpers for reading counter data files created
    // during the executions of a coverage-instrumented binary.
    
    type CounterDataReader struct {
    	stab     *stringtab.Reader
    	args     map[string]string
    	osargs   []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/dump/dump_test.go

    import (
    	"fmt"
    	"testing"
    )
    
    func ptrint(i int) *int {
    	return &i
    }
    
    func ptrstr(s string) *string {
    	return &s
    }
    
    // custom type to test Stringer interface on non-pointer receiver.
    type customString string
    
    // String implements the Stringer interface for testing invocation
    func (s customString) String() string {
    	return "custom string " + string(s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubelet/flags.go

    	flagOpts := kubeletFlagsOpts{
    		nodeRegOpts:              nodeReg,
    		pauseImage:               images.GetPauseImage(cfg),
    		registerTaintsUsingFlags: registerTaintsUsingFlags,
    	}
    	stringMap := buildKubeletArgs(flagOpts)
    	argList := kubeadmutil.ArgumentsToCommand(stringMap, nodeReg.KubeletExtraArgs)
    	envFileContent := fmt.Sprintf("%s=%q\n", constants.KubeletEnvFileVariableName, strings.Join(argList, " "))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode_string.go

    // Code generated by "stringer -type=ErrorCode"; DO NOT EDIT.
    
    package typesinternal
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[InvalidSyntaxTree - -1]
    	_ = x[Test-1]
    	_ = x[BlankPkgName-2]
    	_ = x[MismatchedPkgName-3]
    	_ = x[InvalidPkgUse-4]
    	_ = x[BadImportPath-5]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue11614.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that incorrect expressions involving wrong anonymous interface
    // do not generate panics in Type Stringer.
    // Does not compile.
    
    package main
    
    type I interface {
    	int // ERROR "interface contains embedded non-interface|embedding non-interface type int requires"
    }
    
    func n() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 753 bytes
    - Viewed (0)
Back to top