Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 548 for Fermat (0.11 sec)

  1. cmd/post-policy_test.go

    			expectedRespStatus: http.StatusNoContent,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			dates:              []interface{}{curTimePlus5Min.Format(iso8601TimeFormat), curTime.Format(iso8601DateFormat), curTime.Format(yyyymmdd)},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. internal/s3select/select.go

    	if !parsedInput.CSVArgs.IsEmpty() {
    		parsedInput.format = csvFormat
    		found++
    	}
    	if !parsedInput.JSONArgs.IsEmpty() {
    		parsedInput.format = jsonFormat
    		found++
    	}
    	if !parsedInput.ParquetArgs.IsEmpty() {
    		if parsedInput.CompressionType != "" && parsedInput.CompressionType != noneType {
    			return errInvalidRequestParameter(fmt.Errorf("CompressionType must be NONE for Parquet format"))
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                throw new RecoverableMessageIOException(String.format("Could not read message from '%s'.", remoteAddress), e);
            } catch (ClassNotFoundException e) {
                throw new RecoverableMessageIOException(String.format("Could not read message from '%s'.", remoteAddress), e);
            } catch (IOException e) {
                throw new RecoverableMessageIOException(String.format("Could not read message from '%s'.", remoteAddress), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging.go

    				log.Errorf("error parsing provided json log format, default log format will be used: %v", err)
    			} else {
    				jsonLogStruct = &parsedJSONLogStruct
    			}
    		}
    		formatters = accessLogJSONFormatters(jsonLogStruct)
    		fl.AccessLogFormat = &fileaccesslog.FileAccessLog_LogFormat{
    			LogFormat: &core.SubstitutionFormatString{
    				Format: &core.SubstitutionFormatString_JsonFormat{
    					JsonFormat: jsonLogStruct,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                    throw new IllegalStateException(String.format("Cannot register implementation for type '%s' because an implementation for this type was already registered by %s",
                        publicType, implementationRegistration.getSource()));
                }
                if (managedPublicType) {
                    throw new IllegalArgumentException(String.format("Cannot specify default implementation for managed type '%s'", publicType));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. internal/event/target/mysql.go

    }
    
    // Validate MySQLArgs fields
    func (m MySQLArgs) Validate() error {
    	if !m.Enable {
    		return nil
    	}
    
    	if m.Format != "" {
    		f := strings.ToLower(m.Format)
    		if f != event.NamespaceFormat && f != event.AccessFormat {
    			return fmt.Errorf("unrecognized format")
    		}
    	}
    
    	if m.Table == "" {
    		return fmt.Errorf("table unspecified")
    	}
    
    	if m.DSN != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/accesslog_test.go

    		encoding   meshconfig.MeshConfig_AccessLogEncoding
    		format     string
    		wantFormat string
    	}{
    		{
    			name:       "valid json object",
    			encoding:   meshconfig.MeshConfig_JSON,
    			format:     `{"foo": "bar"}`,
    			wantFormat: `{"foo":"bar"}`,
    		},
    		{
    			name:       "valid nested json object",
    			encoding:   meshconfig.MeshConfig_JSON,
    			format:     `{"foo": {"bar": "ha"}}`,
    			wantFormat: `{"foo":{"bar":"ha"}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

    // Checks if the operation is TF FakeQuant ops.
    bool IsTfFakeQuantOp(Operation *op) {
      return llvm::isa<
          // clang-format off
          TF::FakeQuantWithMinMaxArgsOp,
          TF::FakeQuantWithMinMaxVarsOp,
          TF::FakeQuantWithMinMaxVarsPerChannelOp
          // clang-format on
          >(op);
    }
    
    // Checks if the operation is allowlisted in both modes. These ops are not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

                    } catch (CancellationException e) {
                        throw new BuildCancelledException(String.format("Distribution download cancelled. Using distribution from '%s'.", wrapperConfiguration.getDistribution()), e);
                    } catch (FileNotFoundException e) {
                        throw new IllegalArgumentException(String.format("The specified %s does not exist.", getDisplayName()), e);
                    } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

                        builder.executable(exe.getAbsolutePath());
                    } else {
                        builder.executable(String.format("%s/%s", getWorkingDir().getAbsolutePath(), getExecutable()));
                    }
                } else {
                    builder.executable(String.format("%s/bin/gradle", getDistribution().getGradleHomeDir().getAbsolutePath()));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top