Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for Trailing (0.2 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	op_VCHL   uint32 = 0xE7F9 // 	VRR-b	VECTOR COMPARE HIGH LOGICAL
    	op_VCLZ   uint32 = 0xE753 // 	VRR-a	VECTOR COUNT LEADING ZEROS
    	op_VCTZ   uint32 = 0xE752 // 	VRR-a	VECTOR COUNT TRAILING ZEROS
    	op_VEC    uint32 = 0xE7DB // 	VRR-a	VECTOR ELEMENT COMPARE
    	op_VECL   uint32 = 0xE7D9 // 	VRR-a	VECTOR ELEMENT COMPARE LOGICAL
    	op_VERIM  uint32 = 0xE772 // 	VRI-d	VECTOR ELEMENT ROTATE AND INSERT UNDER MASK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    		return true
    	}
    	return sequenceOfOnes(x) || sequenceOfOnes(^x)
    }
    
    // sequenceOfOnes tests whether a constant is a sequence of ones in binary, with leading and trailing zeros.
    func sequenceOfOnes(x uint64) bool {
    	y := x & -x // lowest set bit of x. x is good iff x+y is a power of 2
    	y += x
    	return (y-1)&y == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
          </fields>
          <comment>We could probably have a specific element for a dev mailing list for things like CI,
            and maybe even a specific element for the user and scm mailing lists. Then leave the more
            lose structure for any other type of mailing list.</comment>
          <codeSegments>
            <codeSegment>
              <version>4.0.0+</version>
              <code>
    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. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_design_file_is_unsupported_type = "{errors.design_file_is_unsupported_type}";
    
        /** The key of the message: Failed to create a crawling config. */
        public static final String ERRORS_failed_to_create_crawling_config_at_wizard = "{errors.failed_to_create_crawling_config_at_wizard}";
    
        /** The key of the message: This feature is disabled. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    from tensorflow.python.saved_model import signature_constants
    from tensorflow.python.saved_model import signature_def_utils_impl
    from tensorflow.python.saved_model import tag_constants
    from tensorflow.python.training import checkpoint_utils
    from tensorflow.python.types import core
    
    
    # Type aliases for quantization method protobuf enums.
    _PresetMethod = quant_opts_pb2.QuantizationMethod.PresetMethod
    _CalibrationMethod = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // TODO(ezhulenev): This might lead to excessive transposes in the final IR,
      // if the ratio of 1x1 convolutions to regular convolutions is close to 1:1.
      // Also FusedBatchNorm in training mode prefers NCHW data format. Check if all
      // users can efficiently use NHWC data format?
      if (one_by_one && trivial_strides && trivial_dilations) {
        return "NHWC";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    			secretKey:        credentials.SecretKey,
    
    			expectedRespStatus: http.StatusBadRequest,
    		},
    
    		// Test case - 8.
    		// Test case with non-existent source file.
    		// Case for the purpose of failing `api.ObjectAPI.GetObjectInfo`.
    		// Expecting the response status code to http.StatusNotFound (404).
    		{
    			bucketName:       bucketName,
    			uploadID:         uploadID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Updates inputs to TPU embedding enqueue ops depending on whether graph is in training mode or in evaluation mode.";
    
      let description = [{
        Updates inputs to TPU embedding enqueue ops depending on whether graph
        is in training mode or in evaluation mode.
      }];
    
      let constructor = "TFTPU::CreateTPUUpdateEmbeddingEnqueueOpInputsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		case images.ErrImagePullBackOff.Error():
    			return kubecontainer.ContainerID{}, fmt.Errorf("container %q in pod %q is waiting to start: trying and failing to pull image", containerName, podName)
    		default:
    			return kubecontainer.ContainerID{}, fmt.Errorf("container %q in pod %q is waiting to start: %v", containerName, podName, reason)
    		}
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    func TestSchedulerGuaranteeNonNilNodeInSchedulingCycle(t *testing.T) {
    	if goruntime.GOOS == "windows" {
    		// TODO: remove skip once the failing test has been fixed.
    		t.Skip("Skip failing test on Windows.")
    	}
    	random := rand.New(rand.NewSource(time.Now().UnixNano()))
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top