Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for workaround (0.44 sec)

  1. cmd/ftp-server-driver.go

    	return m.info.Size
    }
    
    func (m *minioFileInfo) Mode() os.FileMode {
    	if m.isDir {
    		return os.ModeDir
    	}
    	return os.ModePerm
    }
    
    var minFileDate = time.Date(1980, 1, 1, 0, 0, 0, 0, time.UTC) // Workaround for Filezilla
    
    func (m *minioFileInfo) ModTime() time.Time {
    	if !m.info.LastModified.IsZero() {
    		return m.info.LastModified
    	}
    	return minFileDate
    }
    
    func (m *minioFileInfo) IsDir() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/network.go

    }
    
    func initNetworkManager(c *Controller, options Options) *networkManager {
    	n := &networkManager{
    		clusterID:           options.ClusterID,
    		meshNetworksWatcher: options.MeshNetworksWatcher,
    		// zero values are a workaround structcheck issue: https://github.com/golangci/golangci-lint/issues/826
    		ranger:                         nil,
    		network:                        "",
    		networkFromMeshConfig:          "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * reverse of their natural ordering.
       *
       * <p>Note: the type parameter {@code E} extends {@code Comparable<?>} rather than {@code
       * Comparable<? super E>} as a workaround for javac <a
       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6468354">bug 6468354</a>.
       */
      public static <E extends Comparable<?>> Builder<E> reverseOrder() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            """
    
            expect:
            2.times {
                run("work", "--parallel")
                result.assertTaskOrder(":a:work", ":a:finalizer", ":b:work")
            }
    
            and: "Apply workaround"
            buildFile """
                configure(project(':b')) {
                    work.mustRunAfter(":a:work")
                }
            """
            2.times {
                run("work", "--parallel")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. cmd/generic-handlers.go

    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if origin := w.Header().Get("Access-Control-Allow-Origin"); origin == "null" {
    			// This is a workaround change to ensure that "Origin: null"
    			// incoming request to a response back as "*" instead of "null"
    			w.Header().Set("Access-Control-Allow-Origin", "*")
    		}
    		if globalDNSConfig == nil || !globalBucketFederation ||
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    // with additional ops. In the case of unknown batch size, the match will
    // fall through to here and convert to TF Lite BatchMatMul.
    // TODO(b/207064634): CreateEmptyBoolAttr is a temporary workaround for this bug.
    def LegalizeBatchMatMulV3UnknownBatch : Pat<
      (TF_BatchMatMulV3Op $lhs, $rhs, $adj_x, $adj_y, $grad_x, $grad_y),
      (TFL_BatchMatMulOp $lhs, $rhs, $adj_x, $adj_y, CreateEmptyBoolAttr:$adj_y)>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

                Object thing = things[0];
    
                if (thing == null) {
                    return Collections.singletonList(null);
                }
    
                // Casts to Class below are to workaround Eclipse compiler bug
                // See: https://github.com/gradle/gradle/pull/200
    
                if (thing.getClass().isArray()) {
                    Object[] thingArray = (Object[]) thing;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    // Services on port 80 referring to different target ports. Long term, this will be replaced by
    // Gateways directly referencing a Service, rather than label selectors. Warning: this label is
    // intended solely for as a workaround for Knative's Istio integration, and not intended for any
    // other usage. It can, and will, be removed immediately after the new direct reference is ready for
    // use.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          // `element_shape` to 1 here.
          //
          // This workaround enables converting Keras RNN without specifying batch
          // dimension. This isn't guaranteed to work, but it doesn't break any
          // non-broken cases either (since it's already broken if `element_shape`
          // contains -1).
          // TODO(b/142096690): Support dynamic element shape and remove the
          // workaround.
          SmallVector<int32_t, 4> new_element_shape_values;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    	// server should treat that identically to how it would treat the client having explicitly
    	// subscribed to *"
    	// NOTE: this means you cannot subscribe to nothing, which is useful for on-demand loading; to workaround this
    	// Istio clients will send and initial request both subscribing+unsubscribing to `*`.
    	if len(request.ResourceNamesSubscribe) == 0 {
    		wildcard = true
    	}
    	return res.UnsortedList(), wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top