Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for brelaw (0.25 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                            state = 1;
                            break;
                        case 1:
                            if( in[i] == '/' ) {
                                break;
                            } else if( in[i] == '.' &&
                                        (( i + 1 ) >= length || in[i + 1] == '/' )) {
                                i++;
                                break;
                            } else if(( i + 1 ) < length &&
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. guava/src/com/google/common/cache/LocalCache.java

        for (K key : keySet()) {
          while (true) {
            V value = get(key);
            if (value == null || !filter.test(key, value)) {
              break;
            } else if (LocalCache.this.remove(key, value)) {
              changed = true;
              break;
            }
          }
        }
        return changed;
      }
    
      final class KeySet extends AbstractCacheSet<K> {
    
        @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

          this.key = key;
          this.hash = hash;
          this.next = next;
        }
    
        @Override
        public K getKey() {
          return this.key;
        }
    
        // The code below is exactly the same for each entry type.
    
        final int hash;
        @CheckForNull final ReferenceEntry<K, V> next;
        volatile ValueReference<K, V> valueReference = unset();
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    		if err != nil {
    			peerAddErr = errSRPeerResp(fmt.Errorf("unable to create admin client for %s: %w", v.Name, err))
    			break
    		}
    		joinReq.SvcAcctParent = v.AccessKey
    		err = admClient.SRPeerJoin(ctx, joinReq)
    		if err != nil {
    			peerAddErr = errSRPeerResp(fmt.Errorf("unable to link with peer %s: %w", v.Name, err))
    			break
    		}
    		addedCount++
    	}
    
    	if peerAddErr != nil {
    		if addedCount == 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  5. doc/go1.17_spec.html

    	}
    	return
    }
    </pre>
    
    <h3 id="Break_statements">Break statements</h3>
    
    <p>
    A "break" statement terminates execution of the innermost
    <a href="#For_statements">"for"</a>,
    <a href="#Switch_statements">"switch"</a>, or
    <a href="#Select_statements">"select"</a> statement
    within the same function.
    </p>
    
    <pre class="ebnf">
    BreakStmt = "break" [ Label ] .
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `After that,' continued the Hatter, `I cut some more bread-
    and-butter--'
    
      `But what did the Dormouse say?' one of the jury asked.
    
      `That I can't remember,' said the Hatter.
    
      `You MUST remember,' remarked the King, `or I'll have you
    executed.'
    
      The miserable Hatter dropped his teacup and bread-and-butter,
    and went down on one knee.  `I'm a poor man, your Majesty,' he
    began.
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `After that,' continued the Hatter, `I cut some more bread-
    and-butter--'
    
      `But what did the Dormouse say?' one of the jury asked.
    
      `That I can't remember,' said the Hatter.
    
      `You MUST remember,' remarked the King, `or I'll have you
    executed.'
    
      The miserable Hatter dropped his teacup and bread-and-butter,
    and went down on one knee.  `I'm a poor man, your Majesty,' he
    began.
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

                return metadata;
              }
            }
          }
          break;
    
        case tensorflow::AttrValue::kPlaceholder:
          metadata.is_list = 0;
          metadata.list_size = -1;
          metadata.type = TF_ATTR_PLACEHOLDER;
          metadata.total_size = -1;
          break;
    
        case tensorflow::AttrValue::kFunc:
          metadata.is_list = 0;
          metadata.list_size = -1;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/main/webapp/css/bootstrap.min.css

    ,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.b...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Dec 25 08:05:52 GMT 2019
    - 155.8K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    				continue
    			}
    			found = true
    			break
    		}
    		if found {
    			compareMeta1[strings.ToLower(k)] = v
    		}
    	}
    
    	compareMeta2 := make(map[string]string)
    	for k, v := range oi2.Metadata {
    		var found bool
    		for _, prefix := range compareKeys {
    			if !stringsHasPrefixFold(k, prefix) {
    				continue
    			}
    			found = true
    			break
    		}
    		if found {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
Back to top