Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 147 for Investigate (0.14 sec)

  1. pkg/volume/csi/csi_attacher.go

    	klog.V(4).Info(log("probing for updates from CSI driver for [attachment.ID=%v]", attachID))
    
    	timer := time.NewTimer(timeout) // TODO (vladimirvivien) investigate making this configurable
    	defer timer.Stop()
    
    	return c.waitForVolumeAttachmentInternal(volumeHandle, attachID, timer, timeout)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    // forwarding declarations. Underlying types are never Named, TypeParam, or
    // Alias types.
    //
    // [underlying type]: https://go.dev/ref/spec#Underlying_types.
    func (t *Named) Underlying() Type {
    	// TODO(gri) Investigate if Unalias can be moved to where underlying is set.
    	return Unalias(t.resolve().underlying)
    }
    
    func (t *Named) String() string { return TypeString(t, nil) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.cc

      // is safe, as only TF dist-strat can produce distributed ops, and we
      // can rely on TF dist-strat invariants.
      options.launch_id = 1;
      // TODO(b/293186653): investigate we should turn on strict shape checking for
      // GPU.
      if (device_type == DEVICE_GPU) {
        options.strict_shape_checking = false;
      }
      // Note: TF does not use PJRT host callbacks as of today. Setting this option
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. src/runtime/runtime-gdb_test.go

    	// by testenv.Command will cause the test to hang indefinitely, but that's
    	// what “no deadline” means, after all — and it's probably the right behavior
    	// anyway if someone is trying to investigate and fix the GDB bug.
    	cmd.Cancel = func() error {
    		t.Logf("GDB command timed out after %v: %v", time.Since(start), cmd)
    		return cmd.Process.Kill()
    	}
    
    	got, err := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/resolver.go

    		// 	type A T[B]
    		// 	type B = T[A]
    		//
    		// TypeName A has Type Named during checking, but by
    		// the time the unified export data is written out,
    		// its Type is Invalid.
    		//
    		// Investigate and reenable this branch.
    		for _, obj := range objList {
    			check.objDecl(obj, nil)
    		}
    	} else {
    		// Without Alias nodes, we process non-alias type declarations first, followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/go/types/named.go

    // forwarding declarations. Underlying types are never Named, TypeParam, or
    // Alias types.
    //
    // [underlying type]: https://go.dev/ref/spec#Underlying_types.
    func (t *Named) Underlying() Type {
    	// TODO(gri) Investigate if Unalias can be moved to where underlying is set.
    	return Unalias(t.resolve().underlying)
    }
    
    func (t *Named) String() string { return TypeString(t, nil) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/go/types/resolver.go

    		// 	type A T[B]
    		// 	type B = T[A]
    		//
    		// TypeName A has Type Named during checking, but by
    		// the time the unified export data is written out,
    		// its Type is Invalid.
    		//
    		// Investigate and reenable this branch.
    		for _, obj := range objList {
    			check.objDecl(obj, nil)
    		}
    	} else {
    		// Without Alias nodes, we process non-alias type declarations first, followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		// Handle pod resize here instead of doing it in HandlePodUpdates because
    		// this conveniently retries any Deferred resize requests
    		// TODO(vinaykul,InPlacePodVerticalScaling): Investigate doing this in HandlePodUpdates + periodic SyncLoop scan
    		//     See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r663160060
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            bias_fn,
            activation_fn,
            has_batch_norm,
            strides,
            dilations,
            'SAME',
            has_func_alias,
        )
        # TODO: b/331809306 - Investigate why these test fail then re-enable.
        if has_batch_norm and (bias_fn or not input_shape_dynamic):
          return
    
        # TODO: b/331120943 - Re-enable this after correctly handling quantization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/decl.go

    		}
    
    		if check.conf.EnableAlias {
    			// TODO(gri) Should be able to use nil instead of Typ[Invalid] to mark
    			//           the alias as incomplete. Currently this causes problems
    			//           with certain cycles. Investigate.
    			//
    			// NOTE(adonovan): to avoid the Invalid being prematurely observed
    			// by (e.g.) a var whose type is an unfinished cycle,
    			// Unalias does not memoize if Invalid. Perhaps we should use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top