Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for setParameters (0.43 sec)

  1. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

            return fileAuthenticationBhv.selectByPK(id);
        }
    
        public void store(final FileAuthentication fileAuthentication) {
            fileAuthentication.setParameters(ParameterUtil.encrypt(fileAuthentication.getParameters()));
            fileAuthenticationBhv.insertOrUpdate(fileAuthentication, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultProjectConnection.java

            operationParamsBuilder.setParameters(parameters);
            operationParamsBuilder.setEntryPoint("Notify daemons about changed paths API");
            connection.run(
                new ConsumerAction<Void>() {
                    @Override
                    public ConsumerOperationParameters getParameters() {
                        return operationParamsBuilder.build();
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

            return webAuthenticationBhv.selectByPK(id);
        }
    
        public void store(final WebAuthentication webAuthentication) {
            webAuthentication.setParameters(ParameterUtil.encrypt(webAuthentication.getParameters()));
            webAuthenticationBhv.insertOrUpdate(webAuthentication, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/LazyConsumerActionExecutor.java

            builder.setCancellationToken(new DefaultCancellationTokenSource().token());
            builder.setParameters(connectionParameters);
            builder.setEntryPoint("Request daemon shutdown when idle");
    
            run(new ConsumerAction<Void>() {
                @Override
                public ConsumerOperationParameters getParameters() {
                    return builder.build();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

            registerModifiedProperty("hostname");
            this.hostname = value;
        }
    
        public String getParameters() {
            checkSpecifiedProperty("parameters");
            return convertEmptyToNull(parameters);
        }
    
        public void setParameters(String value) {
            registerModifiedProperty("parameters");
            this.parameters = value;
        }
    
        public String getPassword() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/AbstractLongRunningOperation.java

        protected final ConsumerOperationParameters getConsumerOperationParameters() {
            ConnectionParameters connectionParameters = this.connectionParameters;
            return operationParamsBuilder.setParameters(connectionParameters).build();
        }
    
        protected static @Nullable <T> List<T> rationalizeInput(@Nullable T[] arguments) {
            return arguments != null && arguments.length > 0 ? Arrays.asList(arguments) : null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/MinimalGroovyCompileOptions.java

            this.javaAnnotationProcessing = javaAnnotationProcessing;
        }
    
        public boolean isParameters() {
            return parameters;
        }
    
        public void setParameters(boolean parameters) {
            this.parameters = parameters;
        }
    
        public Set<String> getDisabledGlobalASTTransformations() {
            return disabledGlobalASTTransformations;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

            registerModifiedProperty("hostname");
            this.hostname = value;
        }
    
        public String getParameters() {
            checkSpecifiedProperty("parameters");
            return convertEmptyToNull(parameters);
        }
    
        public void setParameters(String value) {
            registerModifiedProperty("parameters");
            this.parameters = value;
        }
    
        public String getPassword() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProcessOutputValueSource.java

            ExecResult r = execOperations.exec(spec -> {
                spec.commandLine(getParameters().getCommandLine().get());
                spec.setIgnoreExitValue(getParameters().getIgnoreExitValue().getOrElse(false));
    
                if (getParameters().getWorkingDirectory().isPresent()) {
                    spec.setWorkingDir(getParameters().getWorkingDirectory().get().getAsFile());
                }
                if (hasFullEnvironment()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

        }
    
        public void test_34_150_10_2() {
            MockletHttpServletRequest request = getMockRequest();
            request.setParameter("geo.location.1.point", "34,150");
            request.setParameter("geo.location.1.distance", "10km");
            request.setParameter("geo.location.2.point", "35,151");
            request.setParameter("geo.location.2.distance", "1km");
    
            final GeoInfo geoInfo = new GeoInfo(request);
            String result =
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top