Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,650 for haxe (0.05 sec)

  1. pilot/pkg/credentials/kube/secrets_test.go

    			expectedCAError: "found secret, but didn't have expected keys cacert or ca.crt; found: tls.crt, tls.key",
    		},
    		{
    			name:            "wrong-keys",
    			namespace:       "default",
    			expectedError:   `found secret, but didn't have expected keys (cert and key) or (tls.crt and tls.key); found: foo-bar, tls.key`,
    			expectedCAError: "found secret, but didn't have expected keys cacert or ca.crt; found: foo-bar, tls.key",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Table.java

      // Views
    
      /**
       * Returns a view of all mappings that have the given row key. For each row key / column key /
       * value mapping in the table with that row key, the returned map associates the column key with
       * the value. If no mappings in the table have the provided row key, an empty map is returned.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/scope.h

      /// control dependencies on other operations.
      Scope WithNoControlDependencies() const;
    
      /// Return a new scope. All ops created within the returned scope will have
      /// the device field set to 'device'.
      Scope WithDevice(const string& device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

            expect:
            fails("resolveSample")
            failure.assertHasDocumentedCause("Consumable configurations with identical capabilities within a project (other than the default configuration) must have unique attributes, but configuration ':sample1' and [configuration ':sample2'] contain identical attribute sets. " +
                "Consider adding an additional attribute to one of the configurations to disambiguate them.  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/docker.md

    Then you could want to have **a single container** with a **process manager** starting **several worker processes** inside.
    
    #### Prometheus and Other Reasons
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    				// below may lead to an endless loop
    				// if we have a cycle for a defined
    				// (*Named) type)
    				obj.typ = Typ[Invalid]
    			}
    
    		case *Func:
    			if !check.validCycle(obj) {
    				// Don't set obj.typ to Typ[Invalid] here
    				// because plenty of code type-asserts that
    				// functions have a *Signature type. Grey
    				// functions have their type set to an empty
    				// signature which makes it impossible to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. cmd/erasure-healing-common.go

    	}
    
    	for _, count := range vidMap {
    		// do we have enough common versions
    		// that have enough quorum to satisfy
    		// the etag.
    		if count >= quorum {
    			return etags
    		}
    	}
    
    	return make([]string, len(partsMetadata))
    }
    
    // Extracts list of times from FileInfo slice and returns, skips
    // slice elements which have errors.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ServiceManager.java

         *
         * <p>This will be called at most once after all the services have entered the {@linkplain
         * State#RUNNING running} state. If any services fail during start up or {@linkplain
         * State#FAILED fail}/{@linkplain State#TERMINATED terminate} before all other services have
         * started {@linkplain State#RUNNING running} then this method will not be called.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. fastapi/security/http.py

        like:
    
        ```
        Authorization: Bearer deadbeef12346
        ```
    
        In this case:
    
        * `scheme` will have the value `"Bearer"`
        * `credentials` will have the value `"deadbeef12346"`
        """
    
        scheme: Annotated[
            str,
            Doc(
                """
                The HTTP authorization scheme extracted from the header value.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/encoding/xml/xml_test.go

    		start := d.InputOffset()
    		have, err := d.RawToken()
    		end := d.InputOffset()
    		if err != nil {
    			t.Fatalf("token %d: unexpected error: %s", i, err)
    		}
    		if !reflect.DeepEqual(have, want) {
    			var shave, swant string
    			if _, ok := have.(CharData); ok {
    				shave = fmt.Sprintf("CharData(%q)", have)
    			} else {
    				shave = fmt.Sprintf("%#v", have)
    			}
    			if _, ok := want.(CharData); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top