Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,101 for chains (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/visitor.h

    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Walks the function by following function call chains and calling the callback
    // for each reachable function (including `func`). Each function is visited only
    // once even if it's called from multiple places and/or recursively.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/crypto/x509/root_unix.go

    	// It is a colon separated list of directories.
    	// See https://www.openssl.org/docs/man1.0.2/man1/c_rehash.html.
    	certDirEnv = "SSL_CERT_DIR"
    )
    
    func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
    	return nil, nil
    }
    
    func loadSystemRoots() (*CertPool, error) {
    	roots := NewCertPool()
    
    	files := certFiles
    	if f := os.Getenv(certFileEnv); f != "" {
    		files = []string{f}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	if chain != nil {
    		sort.SliceStable(chain.Rules, func(i, j int) bool {
    			return orderByCommentServiceName(chain.Rules[i], chain.Rules[j])
    		})
    	}
    	chain, _ = dump.GetChain(utiliptables.TableNAT, kubeNodePortsChain)
    	if chain != nil {
    		sort.SliceStable(chain.Rules, func(i, j int) bool {
    			return orderByCommentServiceName(chain.Rules[i], chain.Rules[j])
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. src/crypto/x509/root_darwin.go

    		}
    	}
    
    	chain := [][]*Certificate{{}}
    	numCerts := macOS.SecTrustGetCertificateCount(trustObj)
    	for i := 0; i < numCerts; i++ {
    		certRef, err := macOS.SecTrustGetCertificateAtIndex(trustObj, i)
    		if err != nil {
    			return nil, err
    		}
    		cert, err := exportCertificate(certRef)
    		if err != nil {
    			return nil, err
    		}
    		chain[0] = append(chain[0], cert)
    	}
    	if len(chain[0]) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/log/slog/example_level_handler_test.go

    }
    
    // NewLevelHandler returns a LevelHandler with the given level.
    // All methods except Enabled delegate to h.
    func NewLevelHandler(level slog.Leveler, h slog.Handler) *LevelHandler {
    	// Optimization: avoid chains of LevelHandlers.
    	if lh, ok := h.(*LevelHandler); ok {
    		h = lh.Handler()
    	}
    	return &LevelHandler{level, h}
    }
    
    // Enabled implements Handler.Enabled by reporting whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractChainedListenableFutureTest.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import junit.framework.TestCase;
    
    /**
     * Unit tests for any listenable future that chains other listenable futures. Unit tests need only
     * override buildChainingFuture and getSuccessfulResult, but they can add custom tests as needed.
     *
     * @author Nishant Thakkar
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/MultipleNativeToolChainIntegrationTest.groovy

        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @RequiresInstalledToolChain(ToolChainRequirement.GCC)
        @ToBeFixedForConfigurationCache
        def "can build with multiple tool chains"() {
            AvailableToolChains.InstalledToolChain x86ToolChain = OperatingSystem.current().isWindows() ?
                    AvailableToolChains.getToolChain(ToolChainRequirement.VISUALCPP) :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_ordinv.go

    	// Inversion is implemented as exponentiation by n - 2, per Fermat's little theorem.
    	//
    	// The sequence of 38 multiplications and 254 squarings is derived from
    	// https://briansmith.org/ecc-inversion-addition-chains-01#p256_scalar_inversion
    	_1 := new(p256OrdElement)
    	_11 := new(p256OrdElement)
    	_101 := new(p256OrdElement)
    	_111 := new(p256OrdElement)
    	_1111 := new(p256OrdElement)
    	_10101 := new(p256OrdElement)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Deferrable.java

                    U result = mapper.apply(value);
                    return Objects.requireNonNull(result, "Mapping a Deferrable to null is not allowed");
                }
            };
        }
    
        /**
         * Chains two {@link Deferrable}s.
         *
         * @param mapper A function which creates the next {@link Deferrable} from the result of the first one.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. security/pkg/pki/util/keycertbundle.go

    	}
    	cert, err := ParsePemEncodedCertificate(certBytes)
    	if err != nil {
    		return fmt.Errorf("failed to parse cert PEM: %v", err)
    	}
    	chains, err := cert.Verify(opts)
    
    	if len(chains) == 0 || err != nil {
    		return fmt.Errorf(
    			"cannot verify the cert with the provided root chain and cert "+
    				"pool with error: %v", err)
    	}
    
    	// Verify that the key can be correctly parsed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top