Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for unlabel (0.13 sec)

  1. src/cmd/link/internal/ld/pe.go

    	if v < Segdata.Filelen {
    		return f.dataSect.index, int64(v), nil
    	}
    	return f.bssSect.index, int64(v - Segdata.Filelen), nil
    }
    
    var isLabel = make(map[loader.Sym]bool)
    
    func AddPELabelSym(ldr *loader.Loader, s loader.Sym) {
    	isLabel[s] = true
    }
    
    // writeSymbols writes all COFF symbol table records.
    func (f *peFile) writeSymbols(ctxt *Link) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/controller/repair.go

    	})
    	if err != nil {
    		return fmt.Errorf("unable to refresh the port allocations: %v", err)
    	}
    	// If not yet initialized.
    	if snapshot.Range == "" {
    		snapshot.Range = c.portRange.String()
    	}
    	// Create an allocator because it is easy to use.
    	stored, err := portallocator.NewFromSnapshot(snapshot)
    	if err != nil {
    		return fmt.Errorf("unable to rebuild allocator from snapshot: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. cmd/object-api-options.go

    		if err != nil {
    			return opts, fmt.Errorf("Unable to parse %s, failed with %w", xhttp.MinIOSourceMTime, err)
    		}
    	}
    	retaintimeStr := strings.TrimSpace(hdr.Get(xhttp.MinIOSourceObjectRetentionTimestamp))
    	var retaintimestmp time.Time
    	if retaintimeStr != "" {
    		retaintimestmp, err = time.Parse(time.RFC3339, retaintimeStr)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/registration_test.go

    		"bar": {},
    	}
    
    	for key, val := range instances {
    		val.Instance, err = instantiateCustomResource(t, fixtures.NewNoxuInstance(ns, key), noxuNamespacedResourceClient, noxuDefinition)
    		if err != nil {
    			t.Fatalf("unable to create Noxu Instance %q:%v", key, err)
    		}
    	}
    
    	addEvents := 0
    	for addEvents < len(instances) {
    		select {
    		case watchEvent := <-noxuNamespacedWatch.ResultChan():
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 11:58:05 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  5. cmd/iam-object-store.go

    				return fmt.Errorf("unable to load the user `%s`: %w", userName, err)
    			}
    		}
    
    		bootstrapTraceMsg("loading regular IAM groups")
    		groupsList := listedConfigItems[groupsListKey]
    		for _, item := range groupsList {
    			group := path.Dir(item)
    			if err := iamOS.loadGroup(ctx, group, cache.iamGroupsMap); err != nil && err != errNoSuchGroup {
    				return fmt.Errorf("unable to load the group `%s`: %w", group, err)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. pkg/kubelet/config/file_linux_test.go

    			dirName, err := mkTempDir("dir-test")
    			if err != nil {
    				t.Fatalf("unable to create temp dir: %v", err)
    			}
    			defer removeAll(dirName, t)
    
    			fileName := fmt.Sprintf("%s_%d", fileNamePre, index)
    			var linkedDirName string
    			if symlink {
    				linkedDirName, err = mkTempDir("linked-dir-test")
    				if err != nil {
    					t.Fatalf("unable to create temp dir for linked files: %v", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		Value:    make([]int64, len(src.Value)),
    		Label:    make(map[string][]string, len(src.Label)),
    		NumLabel: make(map[string][]int64, len(src.NumLabel)),
    		NumUnit:  make(map[string][]string, len(src.NumLabel)),
    	}
    	for i, l := range src.Location {
    		s.Location[i] = pm.mapLocation(l)
    	}
    	for k, v := range src.Label {
    		vv := make([]string, len(v))
    		copy(vv, v)
    		s.Label[k] = vv
    	}
    	for k, v := range src.NumLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/switch.go

    		//   ... search among length 5 strings ...
    		//   goto endLabel
    		// len8:
    		//   ... search among length 8 strings ...
    		//   goto endLabel
    		// ... other lengths ...
    		// outerLabel:
    		// switch len(s) {
    		//   case 5: goto len5
    		//   case 8: goto len8
    		//   ... other lengths ...
    		// }
    		// endLabel:
    
    		outerLabel := typecheck.AutoLabel(".s")
    		endLabel := typecheck.AutoLabel(".s")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/partially_decluster_pass.cc

        //
        //   Input -> OP -> Shape -> F -> Reshape
        //
        // Doing so will break up the cluster.  Even if we were okay with breaking
        // up the cluster we will at least have to relabel the two clusters to have
        // different cluster names.
        //
        // We may want to revisit this in the future: we may have cases where OP is
        // a small computation that does not benefit from XLA while XLA can optimize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/branches.go

    		}
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for _, l := range ls.labels {
    		if !l.used {
    			l := l.lstmt.Label
    			ls.err(l.Pos(), "label %s defined and not used", l.Value)
    		}
    	}
    }
    
    type labelScope struct {
    	errh   ErrorHandler
    	labels map[string]*label // all label declarations inside the function; allocated lazily
    }
    
    type label struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
Back to top