Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 548 for Fermat (0.27 sec)

  1. internal/event/target/elasticsearch.go

    func (a ElasticsearchArgs) Validate() error {
    	if !a.Enable {
    		return nil
    	}
    	if a.URL.IsEmpty() {
    		return errors.New("empty URL")
    	}
    	if a.Format != "" {
    		f := strings.ToLower(a.Format)
    		if f != event.NamespaceFormat && f != event.AccessFormat {
    			return errors.New("format value unrecognized")
    		}
    	}
    	if a.Index == "" {
    		return errors.New("empty index value")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InetAddresses.java

            return false;
          }
        }
        return true;
      }
    
      private static IllegalArgumentException formatIllegalArgumentException(
          String format, Object... args) {
        return new IllegalArgumentException(String.format(Locale.ROOT, format, args));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            List<File> dirs = listDirs(distDir);
            if (dirs.isEmpty()) {
                return InstallCheck.failure(format("Gradle distribution '%s' does not contain any directories. Expected to find exactly 1 directory.", distributionDescription));
            }
            if (dirs.size() != 1) {
                return InstallCheck.failure(format("Gradle distribution '%s' contains too many directories. Expected to find exactly 1 directory.", distributionDescription));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

                formatter.node(getDisplayName().getCapitalizedDisplayName());
                formatter.append(" is already declared as an output property of ");
                format(this.producer, formatter);
                formatter.append(". Cannot also declare it as an output property of ");
                format(owner, formatter);
                formatter.append(".");
                throw new IllegalStateException(formatter.toString());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    var debugCounter = strings.Contains(os.Getenv("GODEBUG"), "countertrace=1")
    
    func debugPrintf(format string, args ...interface{}) {
    	if debugCounter {
    		if len(format) == 0 || format[len(format)-1] != '\n' {
    			format += "\n"
    		}
    		fmt.Fprintf(os.Stderr, "counter: "+format, args...)
    	}
    }
    
    // A Counter is a single named event counter.
    // A Counter is safe for use by multiple goroutines simultaneously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

        // Skip ops that already use target data format.
        auto data_format = layout_sensitive_interface.data_format();
        if (data_format == target_data_format) return;
    
        // Transpose arguments into the target data format.
        Permutation args_permutation =
            GetDataFormatPermutation(data_format, target_data_format);
    
        // Transpose results back to the original data format.
        Permutation res_permutation =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/testing/benchmark.go

    	// the decimal point of all fractional formats.
    	var format string
    	switch y := math.Abs(x); {
    	case y == 0 || y >= 999.95:
    		format = "%10.0f %s"
    	case y >= 99.995:
    		format = "%12.1f %s"
    	case y >= 9.9995:
    		format = "%13.2f %s"
    	case y >= 0.99995:
    		format = "%14.3f %s"
    	case y >= 0.099995:
    		format = "%15.4f %s"
    	case y >= 0.0099995:
    		format = "%16.5f %s"
    	case y >= 0.00099995:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		klog.ErrorS(err, "Failed to generate sandbox config for pod", "pod", klog.KObj(pod))
    		return "", message, err
    	}
    
    	// Create pod logs directory
    	err = m.osInterface.MkdirAll(podSandboxConfig.LogDirectory, 0755)
    	if err != nil {
    		message := fmt.Sprintf("Failed to create log directory for pod %q: %v", format.Pod(pod), err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/pipelines/process_nchw_tensor.mlir

    // RUN: stablehlo-quant-opt %s -stablehlo-process-nchw-tensor \
    // RUN:   -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests that a `convolution(%activation, %weight)` with the activation tensor
    // NCHW format is converted to NHWC convolution. Transpose ops are inserted to
    // the activation and output to match the function signature. The weight
    // constant is transposed.
    
    // CHECK-LABEL: nchw_conv
    // CHECK-SAME: %[[ARG:.+]]: tensor<1x8x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/InetAddresses.java

            return false;
          }
        }
        return true;
      }
    
      private static IllegalArgumentException formatIllegalArgumentException(
          String format, Object... args) {
        return new IllegalArgumentException(String.format(Locale.ROOT, format, args));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top