Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Generating (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    This allows you to have a license header or instructions on which tasks and which parameters to use for generating that file.
    
    With the above benefits, it is really easy to account for new dependencies or dependency versions by simply generating the file again and reviewing the changes.
    
    [[sec:verification-dry-mode]]
    === Using dry mode
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package x509 implements a subset of the X.509 standard.
    //
    // It allows parsing and generating certificates, certificate signing
    // requests, certificate revocation lists, and encoded public and private keys.
    // It provides a certificate verifier, complete with a chain builder.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. cmd/object-api-multipart_test.go

    	ExecExtendedObjectLayerTest(t, testObjectAPIPutObjectPart)
    }
    
    // Tests validate correctness of PutObjectPart.
    func testObjectAPIPutObjectPart(obj ObjectLayer, instanceType string, t TestErrHandler) {
    	// Generating cases for which the PutObjectPart fails.
    	bucket := "minio-bucket"
    	object := "minio-object"
    	opts := ObjectOptions{}
    	// Create bucket before initiating NewMultipartUpload.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	}
    	return out, nil
    }
    
    // sourceMatchHttp checks if the sourceLabels or the gateways in a match condition match with the
    // labels for the proxy or the gateway name for which we are generating a route
    func sourceMatchHTTP(match *networking.HTTPMatchRequest, proxyLabels labels.Instance, gatewayNames sets.String, proxyNamespace string) bool {
    	if match == nil {
    		return true
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. .bazelrc

    # added to override and run the actions using remote strategy.
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating flatbuffer files.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Executing genrule @llvm-project.*=remote'
    
    # Test-related settings below this point
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    						bind:    bind,
    						port:    servicePort,
    						service: service,
    					}
    
    					// Support statefulsets/headless services with TCP ports, and empty service address field.
    					// Instead of generating a single 0.0.0.0:Port listener, generate a listener
    					// for each instance. HTTP services can happily reside on 0.0.0.0:PORT and use the
    					// wildcard route match to get to the appropriate IP through original dst clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    }
    
    TEST_P(FooTest, HasBlahBlah) {
      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    // case with any set of parameters you want. Google Test defines a number
    // of functions for generating test parameters. They return what we call
    // (surprise!) parameter generators. Here is a  summary of them, which
    // are all in the testing namespace:
    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    }
    
    TEST_P(FooTest, HasBlahBlah) {
      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    // case with any set of parameters you want. Google Test defines a number
    // of functions for generating test parameters. They return what we call
    // (surprise!) parameter generators. Here is a  summary of them, which
    // are all in the testing namespace:
    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	// the host compiler that is not from a package that is known
    	// to support internal linking mode.
    	externalobj = false
    
    	// dynimportfail is a list of packages for which generating
    	// the dynimport file, _cgo_import.go, failed. If there are
    	// any of these objects, we must link externally. Issue 52863.
    	dynimportfail []string
    
    	// preferlinkext is a list of packages for which the Go command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	state.stackOffset = stackOffset
    	state.ctxt = ctxt
    
    	if buildcfg.Experiment.RegabiArgs {
    		PopulateABIInRegArgOps(f)
    	}
    
    	if state.loggingLevel > 0 {
    		state.logf("Generating location lists for function %q\n", f.Name)
    	}
    
    	if state.varParts == nil {
    		state.varParts = make(map[*ir.Name][]SlotID)
    	} else {
    		for n := range state.varParts {
    			delete(state.varParts, n)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top