Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 389 for shortly (0.13 sec)

  1. releasenotes/notes/48089.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 44640
    releaseNotes:
    - |
      **Fixed** slow cleanup of auto-registered `WorkloadEntry` resources
      when auto-registration and cleanup should occur shortly after the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 00:37:00 UTC 2023
    - 277 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // Otherwise, this parameter should be set to false.
      bool restrict_functionalization_to_compiled_nodes = false;
      // If true, enables shape inference on input.
      // TODO(jpienaar): This will be removed shortly.
      bool enable_shape_inference = true;
      // _output_shapes is an unregistered attribute which is used during
      // GraphConstructor::ConvertGraph to override shapes. It is unfortunately
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. pkg/volume/util/recyclerclient/recycler_client.go

    	if err != nil {
    		return fmt.Errorf("failed to recycle volume: %s", err)
    	}
    
    	// Recycle succeeded but we failed to delete the recycler pod. Report it,
    	// the controller will re-try recycling the PV again shortly.
    	if deleteErr != nil {
    		return fmt.Errorf("failed to delete recycler pod: %s", deleteErr)
    	}
    
    	return nil
    }
    
    // waitForPod watches the pod it until it finishes and send all events on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  4. cluster/gce/windows/README-GCE-Windows-kube-up.md

    #   prompting.
    WINDOWS_NODE_OS_DISTRIBUTION=win2019 KUBE_UP_AUTOMATIC_CLEANUP=true ./cluster/kube-up.sh
    ```
    
    If your GCP project is configured with two-factor authentication, you may need
    to tap your security key shortly after running `kube-up`.
    
    To teardown the cluster run:
    
    ```bash
    ./cluster/kube-down.sh
    ```
    
    If you want to run more than one cluster simultaneously, you can use two
    separate GCP projects and:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testgodefs/testdata/bitfields.go

        unsigned int B3     :  1;
        unsigned int B4     :  1;
        unsigned int Short1 : 16; // misaligned on 8 bit boundary
        unsigned int B5     :  1;
        unsigned int B6     :  1;
        unsigned int B7     :  1;
        unsigned int B8     :  1;
        unsigned int B9     :  1;
        unsigned int B10    :  3;
        unsigned int Short2 : 16; // alignment is OK
        unsigned int Short3 : 16; // alignment is OK
    };
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 838 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testgodefs/testdata/main.go

    	check := func(name string) {
    		_, ok := bitfieldType.FieldByName(name)
    		if ok {
    			fmt.Fprintf(os.Stderr, "found unexpected bitfields field %s\n", name)
    			pass = false
    		}
    	}
    	check("Short1")
    	check("Short2")
    	check("Short3")
    
    	if !pass {
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/ShortArrayAsListTest.java

          Short[] suffix = {(short) 86, (short) 99};
          Short[] all = concat(concat(prefix, elements), suffix);
          return asList(all).subList(2, elements.length + 2);
        }
      }
    
      private static Short[] concat(Short[] left, Short[] right) {
        Short[] result = new Short[left.length + right.length];
        System.arraycopy(left, 0, result, 0, left.length);
        System.arraycopy(right, 0, result, left.length, right.length);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

    public typealias KtReferenceShortener = KaReferenceShortener
    
    public interface KaReferenceShortenerMixIn : KaSessionMixIn {
    
        /**
         * Collects possible references to shorten. By default, it shortens a fully-qualified members to the outermost class and does not
         * shorten enum entries.  In case of KDoc shortens reference only if it is already imported.
         *
         * N.B. This API is not implemented for the FE10 implementation!
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/io/fs/sub.go

    	}
    	return "", false
    }
    
    // fixErr shortens any reported names in PathErrors by stripping f.dir.
    func (f *subFS) fixErr(err error) error {
    	if e, ok := err.(*PathError); ok {
    		if short, ok := f.shorten(e.Path); ok {
    			e.Path = short
    		}
    	}
    	return err
    }
    
    func (f *subFS) Open(name string) (File, error) {
    	full, err := f.fullName("open", name)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/math/big/floatmarsh.go

    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    		//   (in practice, this should never happen since rounding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top