Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for better (0.11 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `After that,' continued the Hatter, `I cut some more bread-
    and-butter--'
    
      `But what did the Dormouse say?' one of the jury asked.
    
      `That I can't remember,' said the Hatter.
    
      `You MUST remember,' remarked the King, `or I'll have you
    executed.'
    
      The miserable Hatter dropped his teacup and bread-and-butter,
    and went down on one knee.  `I'm a poor man, your Majesty,' he
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          }
        },
        "node_modules/json-parse-better-errors": {
          "version": "1.0.2",
          "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
          "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
          "dev": true
        },
        "node_modules/json-parse-even-better-errors": {
          "version": "2.3.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `After that,' continued the Hatter, `I cut some more bread-
    and-butter--'
    
      `But what did the Dormouse say?' one of the jury asked.
    
      `That I can't remember,' said the Hatter.
    
      `You MUST remember,' remarked the King, `or I'll have you
    executed.'
    
      The miserable Hatter dropped his teacup and bread-and-butter,
    and went down on one knee.  `I'm a poor man, your Majesty,' he
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                addSetterForProperty(property, setter);
            }
    
            private void addSetterForProperty(PropertyMetadata property, Method setter) {
                // GENERATE public void <setter>(<type> value) { <field> == value }
                Type fieldType = getType(property.getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      KONNECTIVITY_AGENT_CERT_DIR="${KUBE_TEMP}/easy-rsa-master/konnectivity-agent"
      if [ ! -x "${CERT_DIR}/easyrsa" ] || [ ! -x "${AGGREGATOR_CERT_DIR}/easyrsa" ]; then
        # TODO(roberthbailey,porridge): add better error handling here,
        # see https://github.com/kubernetes/kubernetes/issues/55229
        cat "${cert_create_debug_output}" >&2
        echo "=== Failed to setup easy-rsa: Aborting ===" >&2
        exit 2
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		if !rt.IsDirectCallOrJump() && !isPLTCall(rt) {
    			continue
    		}
    		rs := r.Sym()
    		if !ldr.AttrReachable(rs) || ldr.SymType(rs) == sym.Sxxx {
    			continue // something is wrong. skip it here and we'll emit a better error later
    		}
    
    		if ldr.SymValue(rs) == 0 && ldr.SymType(rs) != sym.SDYNIMPORT && ldr.SymType(rs) != sym.SUNDEFEXT {
    			// Symbols in the same package are laid out together (if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		// expect to not have some container info. The pod worker knows whether a pod has
    		// been evicted, so if this is about minimizing the time to react to an eviction we
    		// can do better. If it's about preserving pod status info we can also do better.
    		if eviction.PodIsEvicted(pod.Status) {
    			if podStatus, err := kl.podCache.Get(pod.UID); err == nil {
    				kl.containerDeletor.deleteContainersInPod("", podStatus, true)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	handle := func(ctx context.Context, a *Action) {
    		if a.json != nil {
    			a.json.TimeStart = time.Now()
    		}
    		var err error
    		if a.Actor != nil && (!a.Failed || a.IgnoreFail) {
    			// TODO(matloob): Better action descriptions
    			desc := "Executing action (" + a.Mode
    			if a.Package != nil {
    				desc += " " + a.Package.Desc()
    			}
    			desc += ")"
    			ctx, span := trace.StartSpan(ctx, desc)
    			a.traceSpan = span
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               /*default=*/"false",
               "Allows to switch on passthrough args for control flow logic. This "
               "allows the pass to create blocks that better match MLIR interfaces, "
               "but might break assumptions in existing passes.">
      ];
    }
    
    def RegionControlFlowToFunctionalPass : Pass<"tf-region-control-flow-to-functional", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			// The frame top 8 or 16 bytes are for FP
    			c.instoffset = int64(c.autosize) + a.Offset - int64(c.extrasize)
    			return autoclass(c.instoffset)
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top