Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for subname (0.22 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            pluginDescriptor.setArtifactId(extractArtifactId(c));
            pluginDescriptor.setVersion(extractVersion(c));
            pluginDescriptor.setGoalPrefix(extractGoalPrefix(c));
    
            pluginDescriptor.setName(extractName(c));
            pluginDescriptor.setDescription(extractDescription(c));
    
            pluginDescriptor.setIsolatedRealm(extractIsolatedRealm(c));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LoadLibrary(libname string) (handle Handle, err error) {
    	var _p0 *uint16
    	_p0, err = syscall.UTF16PtrFromString(libname)
    	if err != nil {
    		return
    	}
    	return _LoadLibrary(_p0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    	tests := []struct {
    		name         string
    		setStartTime bool
    		jobName      string
    	}{
    		{
    			name:         "New job created without start time being set",
    			setStartTime: false,
    			jobName:      "job1",
    		},
    		{
    			name:         "New job created with start time being set",
    			setStartTime: true,
    			jobName:      "job2",
    		},
    	}
    	for _, tc := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // We should have at least one entry function.
      if (entry_func_count == 0) return false;
    
      if (entry_func_count == 1) {
        // Update the entry func to main when the entry func is only & one.
        entry_func.setName(StringAttr::get(module.getContext(), "main"));
      }
      return true;
    }
    
    std::optional<std::string> Translator::Translate(
        ModuleOp module, const toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	ReplicaCount uint32 `protobuf:"varint,5,opt,name=replicaCount,proto3" json:"replicaCount,omitempty"`
    	// 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
    	Image string `protobuf:"bytes,6,opt,name=image,proto3" json:"image,omitempty"`
    	// Trace sampling fraction.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top