Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 310 for attr_ (0.05 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

                apply plugin: 'maven-publish'
    
                group = 'group'
                version = '1.0'
    
                def comp = new TestComponent()
                def attr1 = Attribute.of('custom', String)
                def attr2 = Attribute.of('nice', Boolean)
    
                comp.usages.add(new TestUsage(
                        name: 'api',
                        usage: objects.named(Usage, 'api'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  2. tests/upsert_test.go

    		t.Errorf("user should be initialized with search value and assign attrs")
    	}
    
    	DB.Save(&User{Name: "find or init", Age: 33})
    	DB.Where(&User{Name: "find or init"}).Attrs("age", 44).FirstOrInit(&user5)
    	if user5.Name != "find or init" || user5.ID == 0 || user5.Age != 33 {
    		t.Errorf("user should be found and not initialized by Attrs")
    	}
    
    	DB.Where(&User{Name: "find or init", Age: 33}).FirstOrInit(&user6)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/array_grad.cc

          GetNodeAttr(op.node()->attrs(), "begin_mask", &begin_mask));
      TF_RETURN_IF_ERROR(GetNodeAttr(op.node()->attrs(), "end_mask", &end_mask));
      TF_RETURN_IF_ERROR(
          GetNodeAttr(op.node()->attrs(), "ellipsis_mask", &ellipsis_mask));
      TF_RETURN_IF_ERROR(
          GetNodeAttr(op.node()->attrs(), "new_axis_mask", &new_axis_mask));
      TF_RETURN_IF_ERROR(
          GetNodeAttr(op.node()->attrs(), "shrink_axis_mask", &shrink_axis_mask));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  4. src/syscall/exec_windows.go

    func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle uintptr, err error) {
    	if len(argv0) == 0 {
    		return 0, 0, EWINDOWS
    	}
    	if attr == nil {
    		attr = &zeroProcAttr
    	}
    	sys := attr.Sys
    	if sys == nil {
    		sys = &zeroSysProcAttr
    	}
    
    	if len(attr.Files) > 3 {
    		return 0, 0, EWINDOWS
    	}
    	if len(attr.Files) < 3 {
    		return 0, 0, EINVAL
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		{name: "429s retry", attr: aliceAttr, allow: false, statusCode: 429, expectedErr: true, expectedAuthorized: false, expectedCalls: 5},
    		// regular errors return errors but do not retry
    		{name: "404 doesnt retry", attr: aliceAttr, allow: false, statusCode: 404, expectedErr: true, expectedAuthorized: false, expectedCalls: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      let description = [{
        The CreateOp creates the tensorflow::OpKernel in the fallback context.
      }];
    
      let arguments = (ins
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def ConstOp: TensorflowMlrt_Op<"constop", []> {
      let summary = "The tf_mlrt ConstOp";
    
      let description = [{
        The ConstOp creates a constant tensorflow::Tensor from serialized proto.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

        const float ratio_threshold) {
      ElementsAttr attr;
      ShapedType type;
      InspectResult result = {};
      if (auto cst = dyn_cast<ConstOp>(inst)) {
        attr = cst.getValue();
        type = mlir::cast<ShapedType>(cst.getType());
      } else if (auto cst = dyn_cast<QConstOp>(inst)) {
        attr = cst.getValue();
        type = mlir::cast<ShapedType>(cst.getType());
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    func shouldCache(attr authorizer.Attributes) bool {
    	controlledAttrSize := int64(len(attr.GetNamespace())) +
    		int64(len(attr.GetVerb())) +
    		int64(len(attr.GetAPIGroup())) +
    		int64(len(attr.GetAPIVersion())) +
    		int64(len(attr.GetResource())) +
    		int64(len(attr.GetSubresource())) +
    		int64(len(attr.GetName())) +
    		int64(len(attr.GetPath()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/partially_decluster_pass_test.cc

                                        ops::Placeholder::Attrs{});
      Output shape_b = ops::Placeholder(s.WithOpName("shape_b"), DT_INT32,
                                        ops::Placeholder::Attrs{});
      Output shape = ops::Add(s.WithOpName("shape"), shape_a, shape_b);
    
      Output reshape_input = ops::Placeholder(s.WithOpName("reshape_input"),
                                              DT_FLOAT, ops::Placeholder::Attrs{});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    ldap.attr.postalAddress=postalAddress
    ldap.attr.city=l
    ldap.attr.teletexTerminalIdentifier=teletexTerminalIdentifier
    ldap.attr.x121Address=x121Address
    ldap.attr.businessCategory=businessCategory
    ldap.attr.registeredAddress=registeredAddress
    ldap.attr.displayName=displayName
    ldap.attr.preferredLanguage=preferredLanguage
    ldap.attr.departmentNumber=departmentNumber
    ldap.attr.uidNumber=uidNumber
    ldap.attr.gidNumber=gidNumber
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top