Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3381 - 3390 of 3,790 for news (0.02 sec)

  1. internal/kms/stub.go

    			matches = append(matches, madmin.KMSKeyInfo{Name: keyName, CreatedAt: StubCreatedAt, CreatedBy: StubCreatedBy})
    		}
    	}
    
    	return matches, "", nil
    }
    
    // CreateKey creates a new key with the given name.
    func (s *StubKMS) CreateKey(_ context.Context, req *CreateKeyRequest) error {
    	if s.containsKeyName(req.Name) {
    		return ErrKeyExists
    	}
    	s.KeyNames = append(s.KeyNames, req.Name)
    	return nil
    }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Aug 18 06:43:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

            int n;
            if(( n = readn( in, buffer, bufferIndex, HEADER_LENGTH )) != HEADER_LENGTH ) {
                if( n == -1 ) {
                    return -1;
                }
                throw new IOException( "unexpected EOF reading netbios session header" );
            }
            int t = buffer[bufferIndex] & 0xFF;
            return t;
        }
    
        int type, length;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/PingResponse.java

                if (StringUtil.isBlank(message)) {
                    message = "{}";
                }
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        public int getStatus() {
            return status;
        }
    
        public String getClusterName() {
            return clusterName;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java

            FileAuthenticationCQ mustQuery = new FileAuthenticationCQ();
            FileAuthenticationCQ shouldQuery = new FileAuthenticationCQ();
            FileAuthenticationCQ mustNotQuery = new FileAuthenticationCQ();
            FileAuthenticationCQ filterQuery = new FileAuthenticationCQ();
            boolLambda.callback(mustQuery, shouldQuery, mustNotQuery, filterQuery);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. docs/em/docs/help-fastapi.md

    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ–Š "๐Ÿ‘€" โ†ฉ๏ธ "๐Ÿš€ ๐Ÿ•ด" ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ“จ ๐Ÿ“จ ๐Ÿ•โ” ๐Ÿ‘ฑ โœ ๐Ÿ†• โ” โš–๏ธ โ”. ๐Ÿ‘† ๐Ÿ’ช โœ” ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ•ด ๐Ÿ’š ๐Ÿšจ ๐Ÿ”ƒ ๐Ÿ†• โ”, โš–๏ธ ๐Ÿ’ฌ, โš–๏ธ ๐ŸŽธ, โ™’๏ธ.
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”„ & โ„น ๐Ÿ‘ซ โŽ ๐Ÿ‘ˆ โ”.
    
    ## ๐Ÿ’ญ โ”
    
    ๐Ÿ‘† ๐Ÿ’ช <a href="https://github.com/fastapi/fastapi/discussions/new?category=questions" class="external-link" target="_blank">โœ ๐Ÿ†• โ”</a> ๐Ÿ“‚ ๐Ÿ—ƒ, ๐Ÿ–ผ:
    
    * ๐Ÿ’ญ **โ”** โš–๏ธ ๐Ÿ’ญ ๐Ÿ”ƒ **โš **.
    * ๐Ÿค” ๐Ÿ†• **โš’**.
    
    **๐Ÿ—’**: ๐Ÿšฅ ๐Ÿ‘† โšซ๏ธ, โคด๏ธ ๐Ÿ‘ค ๐Ÿ”œ ๐Ÿ’ญ ๐Ÿ‘† โ„น ๐ŸŽ. ๐Ÿ‘ถ
    
    ## ๐Ÿ“„ ๐Ÿšฒ ๐Ÿ“จ
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. tensorflow/c/eager/gradients.cc

    absl::Status SetAttrBoolList(AbstractOperation* op_, const char* attr_name,
                                 const unsigned char* values, int num_values,
                                 ForwardOperation* forward_op_) {
      std::unique_ptr<bool[]> b(new bool[num_values]);
      for (int i = 0; i < num_values; ++i) {
        b[i] = values[i];
      }
      forward_op_->attrs.Set(attr_name,
                             gtl::ArraySlice<const bool>(b.get(), num_values));
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. cmd/perf-tests.go

    	UploadTimes   madmin.TimeDurations
    	DownloadTimes madmin.TimeDurations
    	DownloadTTFB  madmin.TimeDurations
    	Error         string
    }
    
    func newRandomReader(size int) io.Reader {
    	return io.LimitReader(randreader.New(), int64(size))
    }
    
    type firstByteRecorder struct {
    	t *time.Time
    	r io.Reader
    }
    
    func (f *firstByteRecorder) Read(p []byte) (n int, err error) {
    	if f.t != nil || len(p) == 0 {
    		return f.r.Read(p)
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. docs/en/docs/features.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Just Modern Python
    
    It's all based on standard **Python type** declarations (thanks to Pydantic). No new syntax to learn. Just standard modern Python.
    
    If you need a 2 minute refresher of how to use Python types (even if you don't use FastAPI), check the short tutorial: [Python Types](python-types.md){.internal-link target=_blank}.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Aug 15 23:30:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/main/resources/fess_message.properties

    errors.invalid_query_cannot_process=The given query could not be processed.
    
    errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
    errors.crud_failed_to_create_instance=Failed to create a new data.
    errors.crud_failed_to_create_crud_table=Failed to create a new data. ({0})
    errors.crud_failed_to_update_crud_table=Failed to update the data. ({0})
    errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0})
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_en.properties

    errors.invalid_query_cannot_process=The given query could not be processed.
    
    errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
    errors.crud_failed_to_create_instance=Failed to create a new data.
    errors.crud_failed_to_create_crud_table=Failed to create a new data. ({0})
    errors.crud_failed_to_update_crud_table=Failed to update the data. ({0})
    errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0})
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top