Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for refStore (0.21 sec)

  1. src/runtime/rt0_linux_ppc64le.s

    	MOVD	R12, 8+FIXED_FRAME(R1)
    	MOVD	$_rt0_ppc64le_linux_lib_go(SB), R12
    	MOVD	R12, 16+FIXED_FRAME(R1)
    	MOVD	$runtime·newosproc0(SB),R12
    	MOVD	R12, CTR
    	BL	(CTR)
    
    done:
    	// Restore and return to ELFv2 caller.
    	UNSTACK_AND_RESTORE_GO_TO_HOST_ABI(16)
    	RET
    
    TEXT _rt0_ppc64le_linux_lib_go(SB),NOSPLIT,$0
    	MOVD	_rt0_ppc64le_linux_lib_argc<>(SB), R3
    	MOVD	_rt0_ppc64le_linux_lib_argv<>(SB), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/dependencies/implementation.go

    	iptablesLegacyBin   = "iptables-legacy"
    	ip6tablesBin        = "ip6tables"
    	ip6tablesNftBin     = "ip6tables-nft"
    	ip6tablesLegacyBin  = "ip6tables-legacy"
    	iptablesRestoreBin  = "iptables-restore"
    	ip6tablesRestoreBin = "ip6tables-restore"
    )
    
    // It is not sufficient to check for the presence of one binary or the other in $PATH -
    // we must choose a binary that is
    // 1. Available in our $PATH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/inbound-ports-tproxy.golden

    iptables -t mangle -A OUTPUT ! -d 127.0.0.1/32 -p tcp -o lo -m owner --gid-owner 1337 -j MARK --set-mark 1338
    iptables -t mangle -A OUTPUT -p tcp -m connmark --mark 1337 -j CONNMARK --restore-mark
    iptables -t mangle -I ISTIO_INBOUND 1 -p tcp -m mark --mark 1337 -j RETURN
    iptables -t mangle -I ISTIO_INBOUND 2 -p tcp -s 127.0.0.6/32 -i lo -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/build.gradle.kts

        api(projects.serviceProvider)
        api(project(":snapshots"))
    
        api(libs.groovy)
        api(libs.inject)
        api(libs.kotlinStdlib)
    
        // TODO - it might be good to allow projects to contribute state to save and restore, rather than have this project know about everything
        implementation(projects.beanSerializationServices)
        implementation(projects.buildEvents)
        implementation(projects.buildOperations)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t mangle -A OUTPUT ! -d 127.0.0.1/32 -p tcp -o lo -m owner --gid-owner 1337 -j MARK --set-mark 1338
    iptables -t mangle -A OUTPUT -p tcp -m connmark --mark 1337 -j CONNMARK --restore-mark
    iptables -t mangle -I ISTIO_INBOUND 1 -p tcp -m mark --mark 1337 -j RETURN
    iptables -t mangle -I ISTIO_INBOUND 2 -p tcp -s 127.0.0.6/32 -i lo -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

    import org.gradle.api.tasks.Optional
    import org.gradle.api.tasks.TaskAction
    
    class ConfigurationCacheConventionMappingIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "doesn't restore convention value to incompatible field type"() {
            given:
            buildFile << """
                abstract class MyTask extends org.gradle.api.internal.ConventionTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

                "incompatible with this version of Gradle and the configuration caching feature - please upgrade to version %s.%s or later of the Gradle Enterprise plugin to restore functionality.",
            MINIMUM_SUPPORTED_PLUGIN_VERSION_FOR_CONFIGURATION_CACHING.getMajor(),
            MINIMUM_SUPPORTED_PLUGIN_VERSION_FOR_CONFIGURATION_CACHING.getMinor());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

                    ArtifactFilter filter = artifact.getDependencyFilter();
    
                    assertSame( dependencyFilter, filter );
                }
            }
            */
        }
    
        @Test
        @Disabled("TODO restore these if it makes sense")
        void testShouldUseCompileScopeIfDependencyScopeEmpty() throws Exception {
            /*
            String groupId = "org.apache.maven";
            String artifactId = "maven-model";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        }
    
        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "searchLogItems", searchLogService.getSearchLogList(searchLogPager)); // page navi
    
            // restore from pager
            copyBeanToBean(searchLogPager, form, op -> op.include(CONDITION_FIELDS));
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/constants/constants.go

    	ProxyGID                  = "proxy-gid"
    	KubeVirtInterfaces        = "kube-virt-interfaces"
    	DryRun                    = "dry-run"
    	TraceLogging              = "iptables-trace-logging"
    	RestoreFormat             = "restore-format"
    	SkipRuleApply             = "skip-rule-apply"
    	RunValidation             = "run-validation"
    	IptablesProbePort         = "iptables-probe-port"
    	ProbeTimeout              = "probe-timeout"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top