Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for defaultSettings (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

    import java.util.List;
    
    import static java.time.Instant.now;
    import static org.apache.commons.lang.ArrayUtils.contains;
    import static org.gradle.internal.hash.Hashing.sha512;
    
    public abstract class DefaultSettings extends AbstractPluginAware implements SettingsInternal {
        private ScriptSource settingsScript;
    
        private StartParameter startParameter;
    
        private File settingsDir;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.security.logoutresponse_signed", "false");
            defaultSettings.put("onelogin.saml2.security.want_messages_signed", "false");
            defaultSettings.put("onelogin.saml2.security.want_assertions_signed", "false");
            defaultSettings.put("onelogin.saml2.security.sign_metadata", "");
            defaultSettings.put("onelogin.saml2.security.want_assertions_encrypted", "false");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

        }
    
        private Map<String, Object> defaultSettings() {
            final Map<String, Object> defaultSettings = new HashMap<>();
            defaultSettings.put(DefaultKeys.INDEX, (settingsId + ".suggest").toLowerCase());
            defaultSettings.put(DefaultKeys.TAG_FIELD_NAME, "label,virtual_host");
            defaultSettings.put(DefaultKeys.ROLE_FIELD_NAME, "role");
            defaultSettings.put(DefaultKeys.LANG_FIELD_NAME, "lang");
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/test/framework/suite_test.go

    	return func(testID string) (*resource.Settings, error) {
    		s.TestID = testID
    		s.BaseDir = os.TempDir()
    		return s, nil
    	}
    }
    
    func defaultSettingsFn(testID string) (*resource.Settings, error) {
    	s := resource.DefaultSettings()
    	s.TestID = testID
    	s.BaseDir = os.TempDir()
    
    	return s, nil
    }
    
    func cleanupRT() {
    	rtMu.Lock()
    	defer rtMu.Unlock()
    	rt = nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

    import org.gradle.api.tasks.SourceSetContainer
    import org.gradle.api.tasks.TaskContainer
    import org.gradle.groovy.scripts.internal.DefaultScriptCompilationHandler.ScriptClassLoader
    import org.gradle.initialization.DefaultSettings
    import org.gradle.internal.jvm.Jvm
    import org.gradle.internal.locking.DefaultDependencyLockingHandler
    import org.gradle.invocation.DefaultGradle
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/flags.go

    	"fmt"
    	"os"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/framework/label"
    )
    
    var settingsFromCommandLine = DefaultSettings()
    
    // SettingsFromCommandLine returns settings obtained from command-line flags. config.Parse must be called before
    // calling this function.
    func SettingsFromCommandLine(testID string) (*Settings, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

          }
        }
    
      /**
       * Settings we receive from the peer. Changes to the field are guarded by this. The instance is
       * never mutated once it has been assigned.
       */
      var peerSettings = DEFAULT_SETTINGS
    
      /** The bytes consumed and acknowledged by the application. */
      val readBytes: WindowCounter = WindowCounter(streamId = 0)
    
      /** The total number of bytes produced by the application. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

            .pingIntervalMillis(pingIntervalMillis)
            .flowControlListener(flowControlListener)
            .build()
        this.http2Connection = http2Connection
        this.allocationLimit = Http2Connection.DEFAULT_SETTINGS.getMaxConcurrentStreams()
        http2Connection.start()
      }
    
      /**
       * Returns true if this connection can carry a stream allocation to `address`. If non-null
       * `route` is the resolved route for a connection.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top