Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 835 for ruleset (0.18 sec)

  1. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                        .collect(Collectors.toList());
            }
    
            final List<Map<String, String>> itemList = new ArrayList<>();
            final Set<String> roleSet = ComponentUtil.getRoleQueryHelper().build(searchRequestType);
            if (roleSet.isEmpty()) {
                for (final LabelTypeItem item : labelList) {
                    if (item.getPermissions().length == 0) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                final Set<String> roleSet = ComponentUtil.getRoleQueryHelper().build(SearchRequestType.JSON); // TODO SearchRequestType?
                final QueryHelper queryHelper = ComponentUtil.getQueryHelper();
                if (!roleSet.isEmpty()) {
                    queryHelper.buildRoleQuery(roleSet, boolQuery);
                }
                builder.setQuery(boolQuery);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("target", pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@dir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@todir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@overwrite"));
        }
    
        /** MNG-4053*/
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  4. guava-gwt/pom.xml

                      <fileset dir="${project.build.directory}/guava-sources">
                        <contains text="@GwtCompatible"/>
                      </fileset>
                    </copy>
                    <!-- The following don't contain @GwtCompatible for dependency reasons. -->
                    <copy toDir="${project.build.directory}/guava-gwt-sources">
                      <fileset dir="${project.build.directory}/guava-sources">
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/main/assemblies/common-bin.xml

    			<filtered>false</filtered>
    		</fileSet>
    		<!-- es/modules -->
    		<fileSet>
    			<directory>${project.basedir}/modules</directory>
    			<outputDirectory>fess-${project.version}/es/modules</outputDirectory>
    		</fileSet>
    		<!-- es/plugins -->
    		<fileSet>
    			<directory>${project.basedir}/plugins</directory>
    			<outputDirectory>fess-${project.version}/es/plugins</outputDirectory>
    		</fileSet>
    		<!-- es/data -->
    		<fileSet>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 17 02:29:43 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

      <artifactId>test</artifactId>
      <version>0.1</version>
    
      <name>Maven Integration Test :: MNG-4416</name>
      <description>
        Test that merging of plugins during profile injection follows these rules regarding ordering:
         model:   X ->      A -> B ->      D -> E
         profile:      Y -> A ->      C -> D ->      F
         result:  X -> Y -> A -> B -> C -> D -> E -> F
      </description>
    
      <build>
        <plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 4.4K bytes
    - Viewed (0)
  7. cni/README.md

    - and the other end is in ztunnel's pod
    
    and setting up iptables rules to funnel traffic thru that socket "tube" to ztunnel and back.
    
    This effectively behaves like ztunnel is an in-pod sidecar, without actually requiring the injection of ztunnel as a sidecar into the pod manifest, or mutatating the application pod in any way.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  8. doc/godebug.md

    ### Go 1.23
    
    Go 1.23 changed the channels created by package time to be unbuffered
    (synchronous), which makes correct use of the [`Timer.Stop`](/pkg/time/#Timer.Stop)
    and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier.
    The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.
    There are no runtime metrics for this change,
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  9. docs/bucket/replication/setup_ilm_expiry_replication.sh

    	exit 1
    fi
    
    ## Check if ILM expiry rules replicated
    sleep 30s
    
    ./mc ilm rule list siteb/bucket
    count=$(./mc ilm rule list siteb/bucket --json | jq '.config.Rules | length')
    if [ $count -ne 1 ]; then
    	echo "BUG: ILM expiry rules not replicated to 'siteb'"
    	exit 1
    fi
    
    ## Check replication of rules content
    expDays=$(./mc ilm rule list siteb/bucket --json | jq '.config.Rules[0].Expiration.Days')
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 00:31:12 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    		} else {
    			rMap[id] = rl
    		}
    	}
    
    	var rules []lifecycle.Rule
    	for _, rule := range rMap {
    		rules = append(rules, rule)
    	}
    
    	// no rules, return
    	if len(rules) == 0 {
    		return []byte{}, nil
    	}
    
    	// get final list for write
    	finalLcCfg := lifecycle.Lifecycle{
    		XMLName:         xmlName,
    		Rules:           rules,
    		ExpiryUpdatedAt: &updatedAt,
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
Back to top