Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 492 for SIMPLE (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/ImportsReader.java

         * provides a direct mapping from each simple name to the qualified name of the class to use.
         */
        String[] getImportPackages();
    
        /**
         * Returns a mapping from simple to qualified class name, derived from
         * the packages returned by {@link #getImportPackages()}. For historical reasons,
         * some simple name match multiple qualified names. In those cases the first match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            // SLF4J Simple is an implementation of the SLF4J API, which is not needed in Gradle
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdCore, setOf("slf4j-simple"))
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdScp, setOf("slf4j-simple"))
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdSftp, setOf("slf4j-simple"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

          gateway: |
    {{ .Files.Get "files/gateway-injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-simple") }}
          grpc-simple: |
    {{ .Files.Get "files/grpc-simple.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-agent") }}
          grpc-agent: |
    {{ .Files.Get "files/grpc-agent.yaml" | trim | indent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

          gateway: |
    {{ .Files.Get "files/gateway-injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-simple") }}
          grpc-simple: |
    {{ .Files.Get "files/grpc-simple.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-agent") }}
          grpc-agent: |
    {{ .Files.Get "files/grpc-agent.yaml" | trim | indent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		discovery2.AddInstance(mock.MakeServiceInstance(mock.WorldService, port, 1, model.Locality{}))
    	}
    	registry1 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter1"),
    		DiscoveryController: discovery1,
    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter2"),
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{&mockMeshConfigHolder{}})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/pilot.libsonnet

      ], panelHeight=10, startY=3)
      + grid.makeGrid([
        row.new('Webhooks')
        + row.withPanels([
          panels.timeSeries.simple(
            'Validation', queries.validateWebhook, |||
              Rate of XDS push operations, by type. This is incremented on a per-proxy basis.
            |||
          ),
          panels.timeSeries.simple(
            'Injection', queries.injectionWebhook, |||
              Size of each xDS push.
            |||
          ),
        ]),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_generic.go

    // and don't use hardware acceleration.
    //
    // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table.
    //
    // The slicing-by-8 algorithm is a faster implementation that uses a bigger
    // table (8*256*4 bytes).
    
    package crc32
    
    import "internal/byteorder"
    
    // simpleMakeTable allocates and constructs a Table for the specified
    // polynomial. The table is suitable for use with the simple algorithm
    // (simpleUpdate).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		},
    	}, func() (generated []test) {
    		// Generate test cases for all simple values (0 to 255) because the number of possible simple values is fixed and small.
    		for i := 0; i <= 255; i++ {
    			each := test{
    				name: fmt.Sprintf("simple value %d", i),
    			}
    			if i <= 23 {
    				each.in = []byte{byte(0xe0) | byte(i)}
    			} else {
    				// larger simple values encode to two bytes
    				each.in = []byte{byte(0xe0) | byte(24), byte(i)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top