Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 224 for capsule (0.13 sec)

  1. docs/security/security_providers.md

    | [GraalVM]        | ✅      |              | [OpenJDK]       | Only actively tested with JDK 11, not with 8 target          |
    | [Bouncy Castle]  | ✅      |              | [Bouncy Castle] | [Tracking bug.][bug5698]                                     |
    | [Conscrypt]      | ✅      | ✅           | [BoringSSL]     | Activated if Conscrypt is first registered provider.         |
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/listener.go

    // limitations under the License.
    
    package model
    
    const (
    	// RDSHttpProxy is the special name for HTTP PROXY route
    	RDSHttpProxy = "http_proxy"
    
    	// VirtualOutboundListenerName is the name for traffic capture listener
    	VirtualOutboundListenerName = "virtualOutbound"
    
    	// VirtualOutboundCatchAllTCPFilterChainName is the name of the catch all tcp filter chain
    	VirtualOutboundCatchAllTCPFilterChainName = "virtualOutbound-catchall-tcp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 10 17:24:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. releasenotes/notes/vm-iptables-inbound.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 29412
    releaseNotes:
    - |
      **Improved** the `istioctl x workload` command to configure VMs to disable inbound `iptables` capture
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 06:42:43 UTC 2021
    - 254 bytes
    - Viewed (0)
  4. tensorflow/c/tf_status.cc

    void TF_SetPayload(TF_Status* s, const char* key, const char* value) {
      TSL_SetPayload(s, key, value);
    }
    void TF_ForEachPayload(const TF_Status* s, TF_PayloadVisitor visitor,
                           void* capture) {
      TSL_ForEachPayload(s, visitor, capture);
    }
    void TF_SetStatusFromIOError(TF_Status* s, int error_code,
                                 const char* context) {
      TSL_SetStatusFromIOError(s, error_code, context);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 18:40:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.cc

      std::vector<ImmediateTensorHandlePtr> owned_captures;
      owned_captures.reserve(captures.size());
      for (ImmediateExecutionTensorHandle* capture : captures) {
        capture->Ref();
        owned_captures.push_back(ImmediateTensorHandlePtr(capture));
      }
    
      out->reset(new FlatTensorFunction(function_def->signature().name(),
                                        std::move(owned_captures), ctx));
      return Status();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/config/config.go

    	// StartTime is the start time the log capture time range.
    	// If set, Since must be unset.
    	StartTime time.Time `json:"startTime,omitempty"`
    	// EndTime is the end time the log capture time range.
    	// Default is now.
    	EndTime time.Time `json:"endTime,omitempty"`
    	// Since defines the start time the log capture time range.
    	// StartTime is set to EndTime - Since.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerConsoleInputEndUserIntegrationTest.groovy

                            }
                            useSpock()
                        }
                    }
                }
    
                ${mavenCentralRepository()}
            """
        }
    
        def "can capture user input if standard input was provided"() {
            when:
            file("src/test/groovy/Test.groovy") << functionalTest("""
                // defer sending the answer until prompted
                def stdin = new PipedInputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            }
    
            // then:
            val runnableBuildOperation = ArgumentCaptor.forClass(RunnableBuildOperation::class.java)
            verify(buildOperationRunner).run(runnableBuildOperation.capture())
    
            // and:
            assertThat(
                runnableBuildOperation.value.description().build().progressDisplayName,
                equalTo("Storing configuration cache state")
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. architecture/standards/README.md

    ## Architecture Standards
    
    **Experimental!**
    
    We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/).
    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/cmd/root.go

    			CNIMode:          cfg.CNIMode,
    			NetworkNamespace: cfg.NetworkNamespace,
    		}
    	}
    
    	iptConfigurator := capture.NewIptablesConfigurator(cfg, ext)
    
    	if !cfg.SkipRuleApply {
    		if err := iptConfigurator.Run(); err != nil {
    			return err
    		}
    		if err := capture.ConfigureRoutes(cfg); err != nil {
    			return fmt.Errorf("failed to configure routes: %v", err)
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top