Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for subname (0.13 sec)

  1. pkg/controller/job/indexed_job_utils_test.go

    	cases := map[string]struct {
    		jobname             string
    		index               int
    		wantPodGenerateName string
    	}{
    		"short job name": {
    			jobname:             "indexed-job",
    			index:               1,
    			wantPodGenerateName: "indexed-job-1-",
    		},
    		"job name exceeds MaxGeneneratedNameLength": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/gcimporter_test.go

    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p", pkgpath, "-D", "testdata", "-importcfg", importcfgfile, "-o", outname, filename)
    	cmd.Dir = dirname
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    		t.Fatalf("go tool compile %s failed: %s", filename, err)
    	}
    	return outname
    }
    
    func testPath(t *testing.T, path, srcDir string) *types.Package {
    	t0 := time.Now()
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    }
    
    // Obj returns the inner Pod.
    func (p *PodWrapper) Obj() *v1.Pod {
    	return &p.Pod
    }
    
    // Name sets `s` as the name of the inner pod.
    func (p *PodWrapper) Name(s string) *PodWrapper {
    	p.SetName(s)
    	return p
    }
    
    // UID sets `s` as the UID of the inner pod.
    func (p *PodWrapper) UID(s string) *PodWrapper {
    	p.SetUID(types.UID(s))
    	return p
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. src/net/net_windows_test.go

    		// and we can match at least one of those names,
    		// let's ignore the other names.
    		if dupNames, ok := dups[wantAddr]; ok && len(dupNames) > 1 {
    			for _, dupName := range dupNames {
    				if haveAddr, ok := have[dupName]; ok && haveAddr == wantAddr {
    					continue nextWant
    				}
    			}
    		}
    		t.Errorf("getmac lists %q, but it could not be found among Go interfaces %v", name, have)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Utime  uint32
    	Stime  uint32
    	Cutime uint32
    	Cstime uint32
    }
    
    type Time_t int64
    
    type Utimbuf struct {
    	Actime  int64
    	Modtime int64
    }
    
    type Utsname struct {
    	Sysname  [16]byte
    	Nodename [32]byte
    	Release  [8]byte
    	Version  [8]byte
    	Machine  [16]byte
    }
    
    type Ucred struct {
    	Pid int32
    	Uid uint32
    	Gid uint32
    }
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    		ix := bytes.Index(out[:], gthc)
    		if ix == -1 {
    			err = fmt.Errorf("BPX4GTH: gthc return data not found")
    			return
    		}
    		jn := out[ix+80 : ix+88] // we didn't declare Pgthc, but jobname is 8-byte at offset 80
    		E2a(jn)
    		jobname = string(bytes.TrimRight(jn, " "))
    
    	} else {
    		err = fmt.Errorf("BPX4GTH: rc=%d errno=%d reason=code=0x%x", rv, rc, rn)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

            cloned->removeAttr(kFromXlaCallModuleAttrName);
    
            if (f == entry_func) {
              // Entry function must be public and has symbol name "@main".
              cloned.setPublic();
              cloned.setName(kStablehloMainFunctionName);
            } else {
              cloned.setPrivate();
            }
    
            return WalkResult::advance();
          },
          &symbol_table);
      if (result.wasInterrupted()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    func (c *SiteReplicationSys) PeerJoinReq(ctx context.Context, arg madmin.SRPeerJoinReq) error {
    	var ourName string
    	for d, p := range arg.Peers {
    		if d == globalDeploymentID() {
    			ourName = p.Name
    			break
    		}
    	}
    	if ourName == "" {
    		return errSRSelfNotFound
    	}
    
    	sa, _, err := globalIAMSys.GetServiceAccount(ctx, arg.SvcAcctAccessKey)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

                                               device.getValue().str(), "_",
                                               inference_type.getValue().str());
      added_func_op.setName(builder.getStringAttr(function_name));
      added_call_op.setCallee(builder.getStringAttr(function_name));
    }
    
    // Raises partitioned sequential `Operations` from a block to a new function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top