Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for attribute (0.23 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            final Attribute attr = new BasicAttribute(name, value);
            final ModificationItem mod = new ModificationItem(DirContext.ADD_ATTRIBUTE, attr);
            modifyList.add(mod);
        }
    
        protected void modifyReplaceEntry(final List<ModificationItem> modifyList, final String name, final String value) {
            final Attribute attr = new BasicAttribute(name, value);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    // TF_AttrMetadata describes the value of an attribute on an operation.
    typedef struct TF_AttrMetadata {
      // A boolean: 1 if the attribute value is a list, 0 otherwise.
      unsigned char is_list;
    
      // Length of the list if is_list is true. Undefined otherwise.
      int64_t list_size;
    
      // Type of elements of the list if is_list != 0.
      // Type of the single value stored in the attribute if is_list == 0.
      TF_AttrType type;
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default String getLdapMemberofAttribute() {
            return getSystemProperty(Constants.LDAP_MEMBEROF_ATTRIBUTE, "memberOf");
        }
    
        default void setLdapMemberofAttribute(final String value) {
            setSystemProperty(Constants.LDAP_MEMBEROF_ATTRIBUTE, value);
        }
    
        default void setStorageEndpoint(final String value) {
            setSystemProperty(Constants.STORAGE_ENDPOINT, value);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // field of a Status object defines what attributes will be set. Clients
    // must ignore fields that do not match the defined type of each attribute,
    // and should assume that any attribute may be empty, invalid, or under
    // defined.
    message StatusDetails {
      // The name attribute of the resource associated with the status StatusReason
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_DeleteTensor(fetchValues[0]);
      TF_DeleteTensor(fetchValues[1]);
    }
    
    // REGISTER_OP for CApiAttributesTest test cases.
    // Registers two ops, each with a single attribute called 'v'.
    // The attribute in one op will have a type 'type', the other
    // will have list(type).
    #define ATTR_TEST_REGISTER_OP(type)                           \
      REGISTER_OP("CApiAttributesTestOp" #type)                   \
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  6. tensorflow/c/c_api_function_test.cc

      EXPECT_EQ(string("Invalid FunctionDef given to TF_FunctionImportFunctionDef"),
                string(TF_Message(s_)));
    }
    
    TEST_F(CApiFunctionTest, Attribute) {
      DefineFunction(func_name_, &func_);
    
      // Get non existent attribute
      TF_Buffer* attr_buf = TF_NewBuffer();
      TF_FunctionGetAttrValueProto(func_, "foo_attr", attr_buf, s_);
      EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s_));
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  7. tensorflow/BUILD

    # https://github.com/tensorflow/tensorflow/blob/cd67f4f3723f9165aabedd0171aaadc6290636e5/tensorflow/tensorflow.bzl#L396-L425
    # And is usable in the "deps" attribute instead of the "srcs" attribute
    # as a workaround for https://github.com/tensorflow/tensorflow/issues/34117
    cc_import(
        name = "libtensorflow_framework_import_lib",
        shared_library = select({
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  8. src/main/java/jcifs/smb/SmbFile.java

                            context.getLocator().getURL(),
                            encodeRelativePath(checkName(name)) + ( ( attributes & ATTR_DIRECTORY ) > 0 ? "/" : "" )),
                context.getContext());
    
            if ( !isWorkgroup(context) ) {
                setContext(context, name + ( ( attributes & ATTR_DIRECTORY ) > 0 ? "/" : "" ));
            }
    
            /*
             * why? am I going around in circles?
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  9. common/scripts/metallb-native.yaml

                      selected by name.
                    items:
                      type: string
                    type: array
                  localPref:
                    description: The BGP LOCAL_PREF attribute which is used by BGP best
                      path algorithm, Path with higher localpref is preferred over one
                      with lower localpref.
                    format: int32
                    type: integer
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    			Transport: s.TestSuiteCommon.client.Transport,
    		})
    		if err != nil {
    			c.Fatalf("Error initializing client: %v", err)
    		}
    
    		return minioClient
    	}
    
    	// user dillon's groups attribute is ["projecta", "projectb"]
    	dillonClient := makeSTSClient("******@****.***", "dillon")
    	// Validate client's permissions
    	c.mustListBuckets(ctx, dillonClient)
    	c.mustListObjects(ctx, dillonClient, "projecta")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
Back to top