Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 339 for irides (0.03 sec)

  1. cmd/peer-s3-client.go

    		SetCount: -1, // explicitly set an invalid value -1, for bucket heal scenario
    	}
    
    	for i, err := range errs {
    		if err == nil {
    			res.Before.Drives = append(res.Before.Drives, healBucketResults[i].Before.Drives...)
    			res.After.Drives = append(res.After.Drives, healBucketResults[i].After.Drives...)
    		}
    	}
    
    	return res, nil
    }
    
    // ListBuckets lists buckets across all nodes and returns a consistent view:
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-04 08:36
    - 15.6K bytes
    - Viewed (0)
  2. README.md

    * Extendable, flexible plugin API: Database Resolver (Multiple Databases, Read/Write Splitting) / Prometheus…
    * Every feature comes with tests
    * Developer Friendly
    
    ## Getting Started
    
    * GORM Guides [https://gorm.io](https://gorm.io)
    * Gen Guides [https://gorm.io/gen/index.html](https://gorm.io/gen/index.html)
    
    ## Contributing
    
    [You can help to deliver a better GORM, check out things you can do](https://gorm.io/contribute.html)
    
    Registered: 2025-05-25 09:35
    - Last Modified: 2023-11-07 02:20
    - 1.8K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
        runs-on: ${{ matrix.os }}
    
        strategy:
          matrix:
    Registered: 2025-05-24 08:59
    - Last Modified: 2025-01-16 08:40
    - 675 bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/Files.java

        checkNotNull(file);
        checkNotNull(charset);
        return new BufferedReader(new InputStreamReader(new FileInputStream(file), charset));
      }
    
      /**
       * Returns a buffered writer that writes to a file using the given character set.
       *
       * <p><b>{@link java.nio.file.Path} equivalent:</b> {@link
       * java.nio.file.Files#newBufferedWriter(java.nio.file.Path, Charset,
       * java.nio.file.OpenOption...)}.
       *
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 32.9K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/index.md

    # How To - Recipes
    
    Here you will see different recipes or "how to" guides for **several topics**.
    
    Most of these ideas would be more or less **independent**, and in most cases you should only need to study them if they apply directly to **your project**.
    
    If something seems interesting and useful to your project, go ahead and check it, but otherwise, you might probably just skip them.
    
    /// tip
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-08-06 04:48
    - 592 bytes
    - Viewed (0)
  6. internal/ringbuffer/ring_buffer.go

    			}
    			continue
    		}
    		return 0, ErrIsEmpty
    	}
    	b = r.buf[r.r]
    	r.r++
    	if r.r == r.size {
    		r.r = 0
    	}
    
    	r.isFull = false
    	return b, r.readErr(true)
    }
    
    // Write writes len(p) bytes from p to the underlying buf.
    // It returns the number of bytes written from p (0 <= n <= len(p))
    // and any error encountered that caused the write to stop early.
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 13.3K bytes
    - Viewed (0)
  7. cmd/testdata/config/2.yaml

    version: v1
    address: ':9000'
    console-address: ':9001'
    certs-dir: '/home/user/.minio/certs/'
    pools: # Specify the nodes and drives with pools
      -
            - 'https://server-example-pool1:9000/mnt/disk{1...4}/'
            - 'https://server1-pool1:9000/mnt/disk{1...4}/'
            - 'https://server3-pool1:9000/mnt/disk{1...4}/'
            - 'https://server4-pool1:9000/mnt/disk{1...4}/'
      -
            - 'https://server-example-pool2:9000/mnt/disk{1...4}/'
    Registered: 2025-05-25 19:28
    - Last Modified: 2023-12-07 09:33
    - 869 bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/testing/59928.md

    <!-- go.dev/issue/59928 -->
    
    The new [Output] method of [testing.T], [testing.B] and [testing.F] provides a Writer
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-05-13 22:43
    - 207 bytes
    - Viewed (0)
  9. docs/tr/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-05-28 14:05
    - 1.3K bytes
    - Viewed (0)
  10. cmd/endpoint-ellipses.go

    			}
    		}
    	}
    	return setSize
    }
    
    // possibleSetCountsWithSymmetry returns symmetrical setCounts based on the
    // input argument patterns, the symmetry calculation is to ensure that
    // we also use uniform number of drives common across all ellipses patterns.
    func possibleSetCountsWithSymmetry(setCounts []uint64, argPatterns []ellipses.ArgPattern) []uint64 {
    	newSetCounts := make(map[uint64]struct{})
    	for _, ss := range setCounts {
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-08-14 17:11
    - 14.7K bytes
    - Viewed (0)
Back to top