Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for verified$ (0.16 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		},
    		{
    			name:   "bool claim",
    			claims: `{"email":"******@****.***","email_verified":true}`,
    			do: func(c claims) (interface{}, error) {
    				var verified bool
    				err := c.unmarshalClaim("email_verified", &verified)
    				return verified, err
    			},
    			want: true,
    		},
    		{
    			name:   "strings claim",
    			claims: `{"groups":["a","b","c"]}`,
    			do: func(c claims) (interface{}, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        }
      }
    }
    
    /// Performs const folding `calculate` with broadcast behavior on the two
    /// attributes `operand1` and `operand2` and returns the result if possible.
    /// This function assumes the both operands are verified to have value
    /// attributes of broadcastable types.
    template <class AttrElementT,
              class ElementValueT = typename AttrElementT::ValueType,
              class CalculationT =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            "require '[1.0, 2.0)'"              | "foo v2+ has an incompatible API for project X" | '1.5'    | "didn't match version 2.0 because "
            "strictly '[1.1, 1.4]'"             | "versions of foo verified to run on platform Y" | '1.4'    | "didn't match versions 2.0, 1.5 because "
            "prefer '[1.0, 1.4]'; reject '1.4'" | "1.4 has a critical bug"                        | '1.3'    | "rejected version 1.4 because "
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                {@code partner}
                (directly synced from a partner Maven 2 repository), {@code deployed} (was deployed from a Maven 2
                instance), {@code verified} (has been hand verified as correct and final).
              </description>
              <required>false</required>
              <type>String</type>
            </field>
          </fields>
        </class>
        <class>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    				"DetachVolume failed",
    				fmt.Errorf("volume is still in use by node, according to Node status"))
    		}
    	}
    
    	// Volume is not marked as in use by node
    	klog.Infof(volumeToDetach.GenerateMsgDetailed("Verified volume is safe to detach", ""))
    	return nil
    }
    
    func (og *operationGenerator) GenerateExpandVolumeFunc(
    	pvc *v1.PersistentVolumeClaim,
    	pv *v1.PersistentVolume) (volumetypes.GeneratedOperations, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // which are stored in a local downloaded source cache, have not been
    // modified since being downloaded. If all the modules are unmodified,
    // verify prints "all modules verified." Otherwise it reports which
    // modules have been changed and causes 'go mod' to exit with a
    // non-zero status.
    //
    // See https://golang.org/ref/mod#go-mod-verify for more about 'go mod verify'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return failure();
      }
    
      int64_t inputs_rank = -1;
      for (Value value : values) {
        if (auto ty = value.getType().dyn_cast<RankedTensorType>()) {
          // Exit early as input types are verified to be compatible so all ranked
          // tensors have the same rank.
          inputs_rank = ty.getRank();
          break;
        }
      }
      if (inputs_rank == -1) return success();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

            .build()
        server.useHttps(serverCertificates.sslSocketFactory())
        executeSynchronously("/")
          .assertFailureMatches("(?s)Hostname localhost not verified.*")
      }
    
      /**
       * Anonymous cipher suites were disabled in OpenJDK because they're rarely used and permit
       * man-in-the-middle attacks. https://bugs.openjdk.java.net/browse/JDK-8212823
       */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    This field specifies a list of operations to copy the claim to HTTP headers on a successfully verified token. items: properties: claim: description: The name of the claim to be copied from. type: string header: description: The name of the header to be created. type: string type: object type: array outputPayloadToHeade: description: This field specifies the header name to output a successfully verified JWT payload to the backend. type: string required: - issuer type: object type: array selector:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let builders = [
        OpBuilder<(ins "Value":$input, "Value":$perm),
        [{ BuildTransposeOp(&$_builder, $_state, input, perm); }]>
      ];
    
      let extraClassDeclaration = [{
        // Quantized axes are verified in the Verify function.
        bool RequiredSameQuantizedAxes() { return false; }
      }];
    }
    
    def TFL_UnpackOp : TFL_Op<"unpack", [
        Pure,
        QuantizableResult,
        SameOperandsAndResultElementType,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top