Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for subname (0.15 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    	}
    
    	n := &Name{Name: id}
    	return n
    }
    
    // moduleName parses:
    //
    //	<module-name> ::= <module-subname>
    //	 	      ::= <module-name> <module-subname>
    //		      ::= <substitution>  # passed in by caller
    //	<module-subname> ::= W <source-name>
    //			 ::= W P <source-name>
    //
    // The module name is optional. If it is not present, this returns the parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    	pdb, pdbName := newMinAvailablePodDisruptionBudget(t, intstr.FromInt32(3))
    	pdb.Spec.Selector = &metav1.LabelSelector{}
    	pod, _ := newPod(t, "yo-yo-yo")
    
    	add(t, dc.pdbStore, pdb)
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 0, 3, 0, map[string]metav1.Time{})
    
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 1, 3, 1, map[string]metav1.Time{})
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		}
    		return "none"
    	}
    	return strings.TrimSpace(string(out))
    }
    
    // findLibPath searches for library libname.
    // It returns library full path if found, or "none" if not found.
    func (ctxt *Link) findLibPath(libname string) string {
    	return ctxt.findLibPathCmd("--print-file-name="+libname, libname)
    }
    
    func (ctxt *Link) loadlib() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    )
    
    func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) {
    	jobname := []byte("\x5c\x40\x40\x40\x40\x40\x40\x40") // "*"
    	responseBuffer := [4096]byte{0}
    	var bufferAlet, reasonCode uint32 = 0, 0
    	var bufferLen, returnValue, returnCode int32 = 4096, 0, 0
    
    	dsa := [18]uint64{0}
    	var argv [7]unsafe.Pointer
    	argv[0] = unsafe.Pointer(&jobname[0])
    	argv[1] = unsafe.Pointer(&responseBuffer[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func NewCallbackCDecl(fn interface{}) uintptr {
    	return syscall.NewCallbackCDecl(fn)
    }
    
    // windows api calls
    
    //sys	GetLastError() (lasterr error)
    //sys	LoadLibrary(libname string) (handle Handle, err error) = LoadLibraryW
    //sys	LoadLibraryEx(libname string, zero Handle, flags uintptr) (handle Handle, err error) = LoadLibraryExW
    //sys	FreeLibrary(handle Handle) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      auto module = callee->getParentOfType<ModuleOp>();
      name_base += "_resource_lifted";
      auto name = name_base;
      callee = callee.clone();
      callee.setPrivate();
      callee.setName(mlir::StringAttr::get(callee->getContext(), name));
      SymbolTable(module).insert(callee);
      result->lifted_callee = callee;
    
      // Remove unused resources in functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top