Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,323 for SIMPLE (0.29 sec)

  1. pilot/pkg/networking/util/util_test.go

    			want:    nil,
    		},
    		{
    			name:    "SIMPLE TLS and nil metadata",
    			tlsMode: networking.ClientTLSSettings_SIMPLE,
    			meta:    nil,
    			want:    alpnOverrideFalse,
    		},
    		{
    			name:    "MUTUAL TLS and nil metadata",
    			tlsMode: networking.ClientTLSSettings_SIMPLE,
    			meta:    nil,
    			want:    alpnOverrideFalse,
    		},
    		{
    			name:    "SIMPLE TLS and empty metadata",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    NOTE: Publishing libraries to Maven repositories is outside the scope of this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/simple-library[simple library sample] for a demonstration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenLoggerFactory.java

    import java.util.Optional;
    
    import org.apache.maven.logwrapper.LogLevelRecorder;
    import org.apache.maven.logwrapper.MavenSlf4jWrapperFactory;
    import org.slf4j.Logger;
    import org.slf4j.simple.SimpleLoggerFactory;
    
    /**
     * LogFactory for Maven which can create a simple logger or one which, if set, fails the build on a severity threshold.
     */
    public class MavenLoggerFactory extends SimpleLoggerFactory implements MavenSlf4jWrapperFactory {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pkg/kube/kclient/index.go

    import (
    	"sync"
    
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Index maintains a simple index over an informer
    type Index[K comparable, O controllers.ComparableObject] struct {
    	mu      sync.RWMutex
    	objects map[K]sets.Set[types.NamespacedName]
    	client  Informer[O]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/internal/coverage/defs.go

    // program unit for which we want to gather coverage info. Coverable
    // units are either "simple" or "intraline"; a "simple" coverable unit
    // corresponds to a basic block (region of straight-line code with no
    // jumps or control transfers). An "intraline" unit corresponds to a
    // logical clause nested within some other simple unit. A simple unit
    // will have a zero Parent value; for an intraline unit NxStmts will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

    import java.util.function.Supplier;
    import java.util.regex.Pattern;
    
    class DefaultRepositoryContentDescriptor implements RepositoryContentDescriptorInternal {
        private enum MatcherKind {
            SIMPLE,
            REGEX,
            SUB_GROUP,
        }
    
        private Set<String> includedConfigurations;
        private Set<String> excludedConfigurations;
        private Set<ContentSpec> includeSpecs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

        }
    
        protected TypeOf() {
            this.type = captureTypeArgument();
        }
    
        /**
         * Queries whether this object represents a simple (non-composite) type, not an array and not a generic type.
         *
         * @return true if this object represents a simple type.
         */
        public boolean isSimple() {
            return type.isClass()
                && !rawClass().isArray();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/wrapper/simple/groovy/settings.gradle

    rootProject.name = 'simple'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 28 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeNormalAnalysisSourceModuleContainingModuleByFileTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/simple.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeDependentAnalysisSourceModuleContainingModuleByFileTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/simple.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top