Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1121 - 1130 of 1,225 for defaulted (0.11 sec)

  1. cmd/erasure-metadata-utils.go

    		// Return the part's size
    		switch {
    		case int64(partIndex) < partsCount:
    			currPartSize = partSize
    		case int64(partIndex) == partsCount:
    			// Size of last part
    			currPartSize = totalSize % partSize
    		default:
    			currPartSize = 0
    		}
    	}
    	return currPartSize, nil
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                            // won't add it into the set of maximally specific
                            // methods
                            lessSpecific = true;
                            break;
    
                        default:
                    }
                }
    
                if (!lessSpecific) {
                    maximals.addLast(app);
                }
            }
    
            if (maximals.size() > 1) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. scripts/docs.py

        This only shows the actual translated files, not the placeholders created with
        build-all.
    
        Takes an optional LANG argument with the name of the language to serve, by default
        en.
        """
        # Enable line numbers during local development to make it easier to highlight
        if lang is None:
            lang = "en"
        lang_path: Path = docs_path / lang
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 08 11:01:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. tests/table_test.go

    	if DB.Dialector.Name() != "postgres" {
    		return
    	}
    
    	type LongString struct {
    		ThisIsAVeryVeryVeryVeryVeryVeryVeryVeryVeryLongString string `gorm:"unique"`
    	}
    
    	t.Run("default", func(t *testing.T) {
    		db, _ := gorm.Open(postgres.Open(postgresDSN), &gorm.Config{})
    		user, err := schema.Parse(&LongString{}, &sync.Map{}, db.Config.NamingStrategy)
    		if err != nil {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Mar 09 09:31:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Ordering.java

       * or {@code comparatorCollection.stream().reduce(Comparator::thenComparing).get()} (if the
       * collection might be empty, also provide a default comparator as the {@code identity} parameter
       * to {@code reduce}).
       *
       * @param comparators the comparators to try in order
       */
      @GwtCompatible(serializable = true)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. docs/debugging/xl-meta/main.go

    					return nil, err
    				}
    				enc := json.NewEncoder(buf)
    				if err := enc.Encode(struct {
    					Versions []version
    				}{Versions: versions}); err != nil {
    					return nil, err
    				}
    				data = b
    			default:
    				return nil, fmt.Errorf("unknown metadata version %d", minor)
    			}
    
    			if c.Bool("data") {
    				b, err := data.json(true)
    				if err != nil {
    					return nil, err
    				}
    				buf = bytes.NewBuffer(b)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 05 11:57:44 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * a name is not known. Not all servers respond to this name.
     */
    
        public static final String SMBSERVER_NAME = "*SMBSERVER     ";
    
    /** 
     * A B node only broadcasts name queries. This is the default if a
     * nameserver such as WINS or Samba is not specified.
     */ 
    
        public static final int B_NODE = 0;
    
    /**
     * A Point-to-Point node, or P node, unicasts queries to a nameserver
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  8. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

            }
            return artifactGeneratorFactories;
        }
    
        protected Map<String, ArtifactGeneratorFactory> createArtifactGeneratorFactories() {
            // by default none, this is extension point
            return new HashMap<>();
        }
    
        private Map<String, ArtifactDecoratorFactory> artifactDecoratorFactories;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  9. cmd/background-newdisks-heal-ops_gen.go

    				err = msgp.WrapError(err, "RetryAttempts")
    				return
    			}
    		case "Finished":
    			z.Finished, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Finished")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 20 15:42:49 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    case STRING:
                        final String str = (String) xObj.value();
                        putResultDataBody(dataMap, entry.getKey(), str);
                        break;
                    default:
                        final Boolean isPruned = fieldPrunedRuleMap.get(entry.getKey());
                        Node value = getXPathAPI().selectSingleNode(document, entry.getValue());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top