Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for stringData (0.34 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"stringData": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      map<string, bytes> data = 2;
    
      // stringData allows specifying non-binary secret data in string form.
      // It is provided as a write-only input field for convenience.
      // All keys and values are merged into the data field on write, overwriting any existing values.
      // The stringData field is never output when reading from the API.
      // +k8s:conversion-gen=false
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetStringFieldObject() throws Exception {
            final Field field = getClass().getField("STRING_DATA");
            assertThat(FieldUtil.getString(field), is(STRING_DATA));
        }
    
        /**
         * @throws Exception
         */
        @Test(expected = ClIllegalArgumentException.class)
        public void testSet() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    		i--
    		dAtA[i] = 0x28
    	}
    	if len(m.StringData) > 0 {
    		keysForStringData := make([]string, 0, len(m.StringData))
    		for k := range m.StringData {
    			keysForStringData = append(keysForStringData, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForStringData)
    		for iNdEx := len(keysForStringData) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.StringData[string(keysForStringData[iNdEx])]
    			baseI := i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. src/reflect/value.go

    // it references will not be garbage collected, so programs must keep
    // a separate, correctly typed pointer to the underlying data.
    //
    // Deprecated: Use unsafe.String or unsafe.StringData instead.
    type StringHeader struct {
    	Data uintptr
    	Len  int
    }
    
    // SliceHeader is the runtime representation of a slice.
    // It cannot be used safely or portably and its representation may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolveConfigurationResolutionBuildOperationResult.java

                        } else {
                            // just serialize as a String as best we can
                            Attribute<String> stringAtt = Attribute.of(name, String.class);
                            String stringValue;
                            if (attributeValue instanceof Named) {
                                stringValue = ((Named) attributeValue).getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	// only PtrSize.
    	stkalign int64
    
    	log bool // print ssa debug to the stdout
    }
    
    // StringData returns a symbol which
    // is the data component of a global string constant containing s.
    func (e *ssafn) StringData(s string) *obj.LSym {
    	if aux, ok := e.strings[s]; ok {
    		return aux
    	}
    	if e.strings == nil {
    		e.strings = make(map[string]*obj.LSym)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticdata/data.go

    	slicedataGen++
    	symname := fmt.Sprintf(".gobytes.%d", slicedataGen)
    	lsym := types.LocalPkg.Lookup(symname).LinksymABI(obj.ABI0)
    	off := dstringdata(lsym, 0, s, pos, "slice")
    	objw.Global(lsym, int32(off), obj.NOPTR|obj.LOCAL)
    
    	return lsym
    }
    
    func dstringdata(s *obj.LSym, off int, t string, pos src.XPos, what string) int {
    	// Objects that are too large will cause the data section to overflow right away,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/internal/goobj/objfile.go

    	return int(binary.LittleEndian.Uint32(s[:]))
    }
    
    func (s *Sym) Name(r *Reader) string {
    	len := binary.LittleEndian.Uint32(s[:])
    	off := binary.LittleEndian.Uint32(s[4:])
    	return r.StringAt(off, len)
    }
    
    func (s *Sym) ABI() uint16   { return binary.LittleEndian.Uint16(s[8:]) }
    func (s *Sym) Type() uint8   { return s[10] }
    func (s *Sym) Flag() uint8   { return s[11] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top