Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for gdbscript (0.14 sec)

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

    		// main and the scheduler, so it's not going anywhere.
    		if i := strings.Index(name, "runtime/proc.go"); i >= 0 && unit.Lib.Pkg == "runtime" {
    			d.dwmu.Lock()
    			if gdbscript == "" {
    				k := strings.Index(name, "runtime/proc.go")
    				gdbscript = name[:k] + "runtime/runtime-gdb.py"
    			}
    			d.dwmu.Unlock()
    		}
    	}
    
    	// Emit directory section. This is a series of nul terminated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. pkg/fieldpath/fieldpath.go

    	if err != nil {
    		return "", err
    	}
    
    	if path, subscript, ok := SplitMaybeSubscriptedPath(fieldPath); ok {
    		switch path {
    		case "metadata.annotations":
    			if errs := validation.IsQualifiedName(strings.ToLower(subscript)); len(errs) != 0 {
    				return "", fmt.Errorf("invalid key subscript in %s: %s", fieldPath, strings.Join(errs, ";"))
    			}
    			return accessor.GetAnnotations()[subscript], nil
    		case "metadata.labels":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyExtensions.java

         * if the property has no value, or if it does not contain a mapping for the key.
         *
         * <p>Extension method to support the subscript operator in Groovy.</p>
         *
         * @param self the {@link MapProperty}
         * @param key the key
         * @return a {@link Provider} for the value
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptRunner.java

     */
    public interface ScriptRunner<T extends Script, M> {
        /**
         * Returns the script which will be executed by this runner. This method is relatively expensive.
         *
         * @return the script.
         */
        T getScript();
    
        /**
         * Returns the data extracted at compilation time.
         */
        M getData();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 18 00:05:45 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/linalg_grad.cc

      }
      return absl::nullopt;
    }
    
    // Returns a tuple denoting the slice mapping to ellipsis.
    //
    // For a given subscript, returns a tuple (start, end) denoting the start
    // axis index and the (negative) end axis index respectively. For any input
    // Tensor `x` described by the subscript, `x[start:end]` would be the slice
    // represented by the ellipsis. E.g. For `ab...cd` returns `[1, -2]`.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  6. pkg/fieldpath/fieldpath_test.go

    				},
    			},
    			expectedMessageFragment: "invalid key subscript in metadata.annotations",
    		},
    		{
    			name:      "invalid label key",
    			fieldPath: "metadata.labels['Www.k8s.io/test']",
    			obj: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: map[string]string{"foo": "bar"},
    				},
    			},
    			expectedMessageFragment: "invalid key subscript in metadata.labels",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptRunnerFactory.java

                this.compiledScript = compiledScript;
                this.source = source;
                this.contextClassLoader = contextClassLoader;
            }
    
            @Override
            public T getScript() {
                if (script == null) {
                    Class<? extends T> scriptClass = compiledScript.loadClass();
                    script = instantiator.newInstance(scriptClass);
                    script.setScriptSource(source);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 02 17:39:25 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/validation/field/path.go

    	}
    	return c.path
    }
    
    // Path represents the path from some root to a particular field.
    type Path struct {
    	name   string // the name of this field or "" if this is an index
    	index  string // if name == "", this is a subscript (index or map key) of the previous element
    	parent *Path  // nil if this is the root element
    }
    
    // NewPath creates a root Path object.
    func NewPath(name string, moreNames ...string) *Path {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 11 08:23:53 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typestring.go

    		w.typ(sig.results.vars[0].typ)
    		return
    	}
    
    	// multiple or named result(s)
    	w.tuple(sig.results, false)
    }
    
    // subscript returns the decimal (utf8) representation of x using subscript digits.
    func subscript(x uint64) string {
    	const w = len("₀") // all digits 0...9 have the same utf8 width
    	var buf [32 * w]byte
    	i := len(buf)
    	for {
    		i -= w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/go/types/typestring.go

    		w.typ(sig.results.vars[0].typ)
    		return
    	}
    
    	// multiple or named result(s)
    	w.tuple(sig.results, false)
    }
    
    // subscript returns the decimal (utf8) representation of x using subscript digits.
    func subscript(x uint64) string {
    	const w = len("₀") // all digits 0...9 have the same utf8 width
    	var buf [32 * w]byte
    	i := len(buf)
    	for {
    		i -= w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top