Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for better (0.12 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    // separated and applied to AIX and other non-ELF targets. Likewise, the prefixed forms do not have encoding
    // restrictions on the offset, so they are also used for static binary to allow better code generation. e.x
    //
    //	MOVD something-byte-aligned(Rx), Ry
    //	MOVD 3(Rx), Ry
    //
    // is allowed when the prefixed forms are used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

                  return function.toString();
                }
              },
              executor);
        }
      }
    
      @Override
      public String toString() {
        // TODO(dpb): Better toString, in the style of Futures.transform etc.
        return toStringHelper(this).add("state", state.get()).addValue(future).toString();
      }
    
      @SuppressWarnings("removal") // b/260137033
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

            setEnabled(String.valueOf(enabled));
        }
    
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
    
        <!--@todo find better solution for management of site deployments -->
        <class>
          <name>Site</name>
          <version>4.0.0+</version>
          <description>Contains the information needed for deploying websites.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

                  return function.toString();
                }
              },
              executor);
        }
      }
    
      @Override
      public String toString() {
        // TODO(dpb): Better toString, in the style of Futures.transform etc.
        return toStringHelper(this).add("state", state.get()).addValue(future).toString();
      }
    
      @SuppressWarnings("removal") // b/260137033
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	// but not yet deleted pods.
    	// TODO: this method could more aggressively cleanup terminated pods
    	// in the future (volumes, mount dirs, logs, and containers could all be
    	// better separated)
    	klog.V(3).InfoS("Clean up orphaned pod directories")
    	err = kl.cleanupOrphanedPodDirs(allPods, runningRuntimePods)
    	if err != nil {
    		// We want all cleanup tasks to be run even if one of them failed. So
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    		return fmt.Errorf("header value configuration %s is invalid", value)
    	}
    
    	if err := validateHeaderValue(value); err != nil {
    		return fmt.Errorf("header value configuration: %w", err)
    	}
    
    	// TODO: find a better way to validate fields supported in custom header, e.g %ENVIRONMENT(X):Z%
    
    	return nil
    }
    
    // validateWeight checks if weight is valid
    func validateWeight(weight int32) error {
    	if weight < 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		pr, pw := io.Pipe()
    		res, err := cst.c.Post(cst.ts.URL, "text/plain", pr)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer res.Body.Close()
    
    		// TODO(panjf2000): sleep is not so robust, maybe find a better way to test this?
    		time.Sleep(10 * time.Millisecond) // stall sending body to server to test server doesn't time out
    		pw.Write([]byte(reqBody))
    		pw.Close()
    
    		got, err := io.ReadAll(res.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              "doesn't support conversion to ResizeBilinearOp or "
              "ConvBackpropInputOp");
        }
    
        // tf.ResizeBilinearOp is perferred than tf.Conv2DBackpropInputOp since
        // the former has better portability, especially in inference use cases.
        bool align_corners;
        llvm::SmallVector<int, 2> output_sizes;
        if (MatchToResizeBilinearOp(conv_op, align_corners, output_sizes, rewriter)
                .succeeded()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    	// for client state to sync. In fact, because the client is not updated during tests, informer updates will break tests
    	// by unexpectedly deleting objects.
    	//
    	// TODO: It might be better to rewrite all these tests manipulate the client an explicitly sync to ensure consistent
    	// state, or to create a fake client that does not use a local cache.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // If the IfRegion is stateless but the region being inlined itself is not
      // stateless, then inlining the region could cause a loss of information.
      // However, its probably better to fold the IfRegion instead of having the
      // dead branch stay.
    
      // Inline the region in place of the IfRegion op, and forward the yield
      // inputs to the IfRegion op results. This is possible only if the yield
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top