Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for set_kind (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{1135, "", ""},
    	{1136, "EDC8136I", "File is not a STREAM."},
    	{1137, "EDC8137I", "STREAMS ioctl() timeout."},
    	{1138, "EDC8138I", "No STREAMS resources."},
    	{1139, "EDC8139I", "The message identified by set_id and msg_id is not in the message catalog."},
    	{1140, "EDC8140I", "Bad message."},
    	{1141, "EDC8141I", "Identifier removed."},
    	{1142, "", ""},
    	{1143, "", ""},
    	{1144, "EDC8144I", "The link has been severed."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if err := utilyaml.NewYAMLOrJSONDecoder(strings.NewReader(str), len(str)).Decode(&patch.Object); err != nil {
    			return err
    		}
    	} else {
    		return fmt.Errorf("invalid patch type: %T", a.patch)
    	}
    
    	patch.SetKind(kind)
    	patch.SetAPIVersion(a.gvr.GroupVersion().String())
    	patch.SetName(a.name)
    	patch.SetNamespace("default")
    
    	_, err := ctx.DynamicClient.
    		Resource(a.gvr).
    		Namespace(patch.GetNamespace()).
    		Apply(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. pkg/kube/client.go

    		DryRun:       getDryRun(dryRun),
    		Force:        &force,
    		FieldManager: "istio-ci",
    	})
    	// If we are changing CRDs, invalidate the discovery client so future calls will not fail
    	if !dryRun && obj.GetKind() == gvk.CustomResourceDefinition.Kind {
    		c.InvalidateDiscovery()
    	}
    
    	return err
    }
    
    func (c *client) deleteYAMLFile(namespace string, dryRun bool, file string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    	sym, str, err := f.getSymbols(SHT_DYNSYM)
    	if err != nil {
    		return nil, err
    	}
    	f.gnuVersionInit(str)
    	var all []ImportedSymbol
    	for i, s := range sym {
    		if ST_BIND(s.Info) == STB_GLOBAL && s.Section == SHN_UNDEF {
    			all = append(all, ImportedSymbol{Name: s.Name})
    			sym := &all[len(all)-1]
    			sym.Library, sym.Version = f.gnuVersion(i)
    		}
    	}
    	return all, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    // ELF32 Symbol.
    type Sym32 struct {
    	Name  uint32
    	Value uint32
    	Size  uint32
    	Info  uint8
    	Other uint8
    	Shndx uint16
    }
    
    const Sym32Size = 16
    
    func ST_BIND(info uint8) SymBind { return SymBind(info >> 4) }
    func ST_TYPE(info uint8) SymType { return SymType(info & 0xF) }
    func ST_INFO(bind SymBind, typ SymType) uint8 {
    	return uint8(bind)<<4 | uint8(typ)&0xf
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top