Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for Xadd (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	_, err = Seek(fd, cnt, 0 /* SEEK_SET */)
    	if err != nil {
    		return n, err
    	}
    
    	return n, nil
    }
    
    func Err2ad() (eadd *int) {
    	r0, _, _ := CallLeFuncWithErr(GetZosLibVec() + SYS___ERR2AD<<4)
    	eadd = (*int)(unsafe.Pointer(r0))
    	return
    }
    
    func ZosConsolePrintf(format string, v ...interface{}) (int, error) {
    	type __cmsg struct {
    		_            uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                HashSet<String> minProfileIds = new HashSet<>();
                for (org.apache.maven.api.model.Profile profile : m.getProfiles()) {
                    if (!minProfileIds.add(profile.getId())) {
                        addViolation(
                                problems,
                                Severity.WARNING,
                                Version.BASE,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %cst = arith.constant dense<0.0> : tensor<32xf32>
      %1 = "tfl.dequantize"(%arg0) : (tensor<32x!quant.uniform<u8:f32, 1.0>>) -> tensor<32xf32>
      %add = "tfl.add"(%1, %cst) {fused_activation_function = "NONE"} : (tensor<32xf32>, tensor<32xf32>) -> tensor<32xf32>
      %3 = "tfl.quantize"(%add) {qtype = tensor<32xf32>} : (tensor<32xf32>) -> tensor<32x!quant.uniform<u8:f32, 1.0>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    for (String s : ext) {
                        if (conf.equals(s)) {
                            String configName = config.getName();
                            configsToAdd.add(configName);
                            addExtendingConfigurations(configName, dd,
                                useDefaultMappingToGuessRightOperand);
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager_test.go

    }
    
    // After adding reconciliation, if status in pod manager is different from the cached status, a reconciliation
    // will be triggered, which will mess up all the old unit test.
    // To simplify the implementation of unit test, we add testSyncBatch() here, it will make sure the statuses in
    // pod manager the same with cached ones before syncBatch(true) so as to avoid reconciling.
    func (m *manager) testSyncBatch() {
    	for uid, status := range m.podStatuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // number of input operands could vary. Gets the min/max number of
      // operands from tflite op name.
      // Also, since the above code special-handles the `tfl.reshape` op and add an
      // additional input, we put these function block here.
      llvm::MinMax input_min_max = mlir::OperandNumbersMinMax(op_name);
      int input_max_num = input_min_max.Max;
      int op_input_num = op_state.operands.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    		return
    	}
    
    	// Delete expectations for the DaemonSet so if we create a new one with the same name it starts clean
    	dsc.expectations.DeleteExpectations(logger, key)
    
    	dsc.queue.Add(key)
    }
    
    // Run begins watching and syncing daemon sets.
    func (dsc *DaemonSetsController) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    
    	dsc.eventBroadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top