Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for decSizes (0.27 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    // names to search on both Linux and OSX. osxNames is a list of names specific
    // to OSX. names always has a higher priority than osxNames. The order of
    // the name within each list decides its priority (e.g. the first name has a
    // higher priority than the second name in the list).
    //
    // It returns a string with path to the binary and a boolean indicating if any
    // acceptable binary was found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                builder.classpath(getExecHandleFactoryClasspath());
                builder.jvmArgs(invocation.launcherJvmArgs);
                // Apply the agent to the newly created daemon. The feature flag decides if it is going to be used.
                for (File agent : cleanup(GLOBAL_SERVICES.get(ModuleRegistry.class).getModule(AgentUtils.AGENT_MODULE_NAME).getClasspath().getAsFiles())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

      (Another option is to add the `Automatic-Module-Name` Jar manifest attribute as <<#sec:java_library_modular_auto,described further down>>.)
    * The Jar our module depends on is itself a module, which Gradles decides based on the presence of a `module-info.class` -- the compiled version of the module descriptor -- in the Jar.
      (Or, alternatively, the presence of an `Automatic-Module-Name` attribute the Jar manifest)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    }
    
    // podSyncer describes the core lifecyle operations of the pod state machine. A pod is first
    // synced until it naturally reaches termination (true is returned) or an external agent decides
    // the pod should be terminated. Once a pod should be terminating, SyncTerminatingPod is invoked
    // until it returns no error. Then the SyncTerminatedPod method is invoked until it exits without
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          this.actionWhenFirstParamIsNull = actionWhenFirstParamIsNull;
          this.actionWhenSecondParamIsNull = actionWhenSecondParamIsNull;
        }
    
        /** Method that decides how to react to parameters. */
        public void reactToNullParameters(@Nullable Object first, @Nullable Object second) {
          if (first == null) {
            actionWhenFirstParamIsNull.act();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    // useCache tries to satisfy the action a, which has action ID actionHash,
    // by using a cached result from an earlier build. At the moment, the only
    // cached result is the installed package or binary at target.
    // If useCache decides that the cache can be used, it sets a.buildID
    // and a.built for use by parent actions and then returns true.
    // Otherwise it sets a.buildID to a temporary build ID for use in the build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -#  endif
    -# endif
    -
    -/* GCC < 3.0 optimizes memset(s, 0, n) but not bzero(s, n).
    -   The optimization is broken before EGCS 1.1.
    -   GCC 3.0+ has __builtin_bzero as well, but at least till GCC 3.4
    -   if it decides to call the library function, it calls memset
    -   and not bzero.  */
    -# if __GNUC_PREREQ (2, 91)
    -#  define __bzero(s, n) __builtin_memset (s, '\0', n)
    -# endif
    -
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  8. docs/es/docs/async.md

    Luego, cuando llega tu turno, haces un trabajo "productivo" real 🤓, procesas el menú, decides lo que quieres, lo que quiere esa persona 😍, pagas 💸, verificas que das el billete o tarjeta correctos, verificas que te cobren correctamente, que el pedido tiene los artículos correctos, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	args    *types.Var
    	callers []printfCaller
    	failed  bool // if true, not a printf wrapper
    }
    
    type printfCaller struct {
    	w    *printfWrapper
    	call *ast.CallExpr
    }
    
    // maybePrintfWrapper decides whether decl (a declared function) may be a wrapper
    // around a fmt.Printf or fmt.Print function. If so it returns a printfWrapper
    // function describing the declaration. Later processing will analyze the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/func.go

    	}
    	v.Pos = pos
    	b.Values = append(b.Values, v)
    	return v
    }
    
    // newValueNoBlock allocates a new Value with the given fields.
    // The returned value is not placed in any block.  Once the caller
    // decides on a block b, it must set b.Block and append
    // the returned value to b.Values.
    func (f *Func) newValueNoBlock(op Op, t *types.Type, pos src.XPos) *Value {
    	var v *Value
    	if f.freeValues != nil {
    		v = f.freeValues
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top