Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for subname (0.24 sec)

  1. src/cmd/go/internal/work/action.go

    func (b *Builder) buildmodeShared(mode, depMode BuildMode, args []string, pkgs []*load.Package, a1 *Action) *Action {
    	name, err := libname(args, pkgs)
    	if err != nil {
    		base.Fatalf("%v", err)
    	}
    	return b.linkSharedAction(mode, depMode, name, a1)
    }
    
    // linkSharedAction takes a grouping action a1 corresponding to a list of built packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// LegacyJobName and LegacyControllerUid are legacy labels that were set using unprefixed labels.
    	LegacyJobNameLabel       = "job-name"
    	LegacyControllerUidLabel = "controller-uid"
    	// JobName is a user friendly way to refer to jobs and is set in the labels for jobs.
    	JobNameLabel = labelPrefix + LegacyJobNameLabel
    	// Controller UID is used for selectors and labels for jobs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    }
    
    func (t *tester) shouldRunTest(name string) bool {
    	if t.runRx != nil {
    		return t.runRx.MatchString(name) == t.runRxWant
    	}
    	if len(t.runNames) == 0 {
    		return true
    	}
    	for _, runName := range t.runNames {
    		if runName == name {
    			return true
    		}
    	}
    	return false
    }
    
    func (t *tester) maybeLogMetadata() error {
    	if t.compileOnly {
    		// We need to run a subprocess to log metadata. Don't do that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    				base.Fatalf("reading shlibname: %v", err)
    			}
    			if err == nil {
    				libname := strings.TrimSpace(string(shlib))
    				if cfg.BuildContext.Compiler == "gccgo" {
    					p.Shlib = filepath.Join(p.Internal.Build.PkgTargetRoot, "shlibs", libname)
    				} else {
    					p.Shlib = filepath.Join(p.Internal.Build.PkgTargetRoot, libname)
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    			var gottenNoxuInstance *unstructured.Unstructured
    			if disabledVersions[version2] {
    				gottenNoxuInstance = &unstructured.Unstructured{}
    				gottenNoxuInstance.SetName("foo")
    			} else {
    				gottenNoxuInstance, err = noxuResourceClient2.Get(context.TODO(), "foo", metav1.GetOptions{})
    				if err != nil {
    					t.Fatal(err)
    				}
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/MoreExecutors.java

        checkNotNull(name);
        checkNotNull(runnable);
        // TODO(b/139726489): Confirm that null is impossible here.
        Thread result = requireNonNull(platformThreadFactory().newThread(runnable));
        try {
          result.setName(name);
        } catch (SecurityException e) {
          // OK if we can't set the name in this environment.
        }
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    func (state *dodataState) allocateDataSectionForSym(seg *sym.Segment, s loader.Sym, rwx int) *sym.Section {
    	ldr := state.ctxt.loader
    	sname := ldr.SymName(s)
    	if strings.HasPrefix(sname, "go:") {
    		sname = ".go." + sname[len("go:"):]
    	}
    	sect := addsection(ldr, state.ctxt.Arch, seg, sname, rwx)
    	sect.Align = symalign(ldr, s)
    	state.datsize = Rnd(state.datsize, int64(sect.Align))
    	sect.Vaddr = uint64(state.datsize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. pkg/kube/client.go

    		ret = action.(clienttesting.CreateAction).GetObject()
    		meta, ok := ret.(metav1.Object)
    		if !ok {
    			return
    		}
    
    		if meta.GetName() == "" && meta.GetGenerateName() != "" {
    			meta.SetName(names.SimpleNameGenerator.GenerateName(meta.GetGenerateName()))
    		}
    
    		return
    	}
    	for _, fc := range []fakeClient{
    		c.kube.(*fake.Clientset),
    		c.istio.(*istiofake.Clientset),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      uint32 replicaCount = 5 [deprecated = true];
    
      // Image name used for Pilot.
      //
      // This can be set either to image name if hub is also set, or can be set to the full hub:name string.
      //
      // Examples: custom-pilot, docker.io/someuser:custom-pilot
      string image = 6;
    
      // Trace sampling fraction.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			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(
    			context.TODO(),
    			patch.GetName(),
    			patch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top