Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 210 for b0Bundle (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorBuilder.java

                return "client";
            }
            return null;
        }
    
        private enum JarDependencyType {
            TEST_JAR("test-jar"), EJB_CLIENT("ejb-client"), EJB("ejb"), BUNDLE("bundle"), MAVEN_PLUGIN("maven-plugin"), ECLIPSE_PLUGIN("eclipse-plugin");
    
            private static final Map<String, JarDependencyType> TYPES;
    
            static {
                TYPES = new HashMap<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/cache/secretcache.go

    	certMutex sync.RWMutex
    
    	// outputMutex protects writes of certificates to disk
    	outputMutex sync.Mutex
    
    	// Dynamically configured Trust Bundle Mutex
    	configTrustBundleMutex sync.RWMutex
    	// Dynamically configured Trust Bundle
    	configTrustBundle []byte
    
    	// queue maintains all certificate rotation events that need to be triggered when they are about to expire
    	queue queue.Delayed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                            library("myLib-ext", "org.gradle.test", "lib-ext").versionRef("myLib")
                            bundle("myBundle", listOf("myLib"))
                            bundle("myBundle-ext", listOf("myLib-ext"))
                        }
                    }
                }
            """
            def publishLib = { String artifactId, String version ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/builder.go

    type Option struct {
    	IsCustomBuilder bool
    	UseFilterState  bool
    	UseExtendedJwt  bool
    }
    
    // Builder builds Istio authorization policy to Envoy filters.
    type Builder struct {
    	trustDomainBundle trustdomain.Bundle
    	option            Option
    
    	// populated when building for CUSTOM action.
    	customPolicies []model.AuthorizationPolicy
    	extensions     map[string]*builtExtAuthz
    
    	// populated when building for ALLOW/DENY/AUDIT action.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device.h

        // compute stream. Otherwise each XLA device will having their own compute
        // streams.
        bool use_global_compute_stream = false;
    
        // A vector of ShapeDeterminationFn (i.e., a bundle of LayoutSelectionFn,
        // ShapeRepresentationFn). Each bundle describes how the on-host shapes of
        // a) argument and return value, for entry computations b) variables, for
        // all computations, should be represented in XLA. Parameters/return values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    ****
    **In this section, you will:**
    
    - Initialize a Java project
    - Review the directory layout
    - Run a Java application
    - Produce a Build Scan
    - Bundle the application in an archive
    ****
    
    [[part1_begin]]
    == Step 0. Before you Begin
    
    1. Make sure you have <<installation.adoc#installation,Gradle installed>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/builder_test.go

    						StatusOnError: "999",
    					},
    				},
    			},
    		},
    	}
    )
    
    func TestGenerator_GenerateHTTP(t *testing.T) {
    	testCases := []struct {
    		name       string
    		tdBundle   trustdomain.Bundle
    		meshConfig *meshconfig.MeshConfig
    		version    *model.IstioVersion
    		input      string
    		want       []string
    	}{
    		{
    			name:  "allow-empty-rule",
    			input: "allow-empty-rule-in.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/net/http/socks_bundle.go

    // Code generated by golang.org/x/tools/cmd/bundle. DO NOT EDIT.
    //go:generate bundle -o socks_bundle.go -prefix socks golang.org/x/net/internal/socks
    
    // Package socks provides a SOCKS version 5 client implementation.
    //
    // SOCKS protocol version 5 is defined in RFC 1928.
    // Username/Password authentication for SOCKS version 5 is defined in
    // RFC 1929.
    //
    
    package http
    
    import (
    	"context"
    	"errors"
    	"io"
    	"net"
    	"strconv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

            then:
            result.assertTasksExecuted(tasks.test.allToInstall, ":xcTest")
            test.assertTestCasesRan(testExecutionResult)
        }
    
        @ToBeFixedForConfigurationCache
        def 'can build xctest bundle which transitively depends on other Swift libraries'() {
            given:
            def app = new SwiftAppWithLibraries()
            createDirs("hello", "log")
            settingsFile << """
                rootProject.name = 'app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

    import org.junit.Before
    import java.io.File
    import java.util.Properties
    
    
    /**
     * Base class for Kotlin DSL integration tests.
     *
     * You must apply the `gradlebuild.kotlin-dsl-plugin-bundle-integ-tests` plugin for this to work.
     *
     * You can also set the `kotlinDslTestsExtraRepo` system property
     * to the path of a maven repository to be injected in all tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top