Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for Haering (0.21 sec)

  1. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

          if (currentSubscribers == null || !currentSubscribers.removeAll(listenerMethodsForType)) {
            // if removeAll returns true, all we really know is that at least one subscriber was
            // removed... however, barring something very strange we can assume that if at least one
            // subscriber was removed, all subscribers on listener for that event type were... after
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 22 13:05:46 GMT 2021
    - 10.5K bytes
    - Viewed (0)
  2. docs/distributed/decom.sh

    	exit 1
    fi
    
    got_checksum=$(./mc cat myminio/bucket2/dsync/drwmutex.go | md5sum)
    if [ "${expected_checksum}" != "${got_checksum}" ]; then
    	echo "BUG: decommission failed on encrypted objects with tiering: expected ${expected_checksum} got ${got_checksum}"
    	exit 1
    fi
    
    go install -v github.com/minio/minio/docs/debugging/s3-check-md5@latest
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    must be!' thought Alice.  `I wonder what they'll do next!  As for
    pulling me out of the window, I only wish they COULD!  I'm sure I
    don't want to stay in here any longer!'
    
      She waited for some time without hearing anything more:  at
    last came a rumbling of little cartwheels, and the sound of a
    good many voices all talking together:  she made out the words:
    `Where's the other ladder?--Why, I hadn't to bring but one;
    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)
  4. docs/bucket/lifecycle/README.md

                    "DeleteMarker": true
                },
                "Status": "Enabled"
            }
        ]
    }
    ```
    
    ## 4. Enable ILM transition feature
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Aug 26 07:33:25 GMT 2023
    - 9K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/eventbus/EventBus.java

     * is intended solely to help find problems during development.
     *
     * <p>The EventBus guarantees that it will not call a subscriber method from multiple threads
     * simultaneously, unless the method explicitly allows it by bearing the {@link
     * AllowConcurrentEvents} annotation. If this annotation is not present, subscriber methods need not
     * worry about being reentrant, unless also called from outside the EventBus.
     *
     * <h2>Dead Events</h2>
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 25 16:37:57 GMT 2021
    - 12.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    must be!' thought Alice.  `I wonder what they'll do next!  As for
    pulling me out of the window, I only wish they COULD!  I'm sure I
    don't want to stay in here any longer!'
    
      She waited for some time without hearing anything more:  at
    last came a rumbling of little cartwheels, and the sound of a
    good many voices all talking together:  she made out the words:
    `Where's the other ladder?--Why, I hadn't to bring but one;
    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)
  7. misc/ios/go_ios_exec.go

    				return err
    			}
    			attempt++
    			time.Sleep(5 * time.Second)
    			continue
    		}
    		out, err := runLLDB("remote-ios", appdir, deviceapp, args)
    		// If the program was not started it can be retried without papering over
    		// real test failures.
    		started := bytes.HasPrefix(out, []byte("lldb: running program"))
    		if started || err == nil || attempt == 5 {
    			return err
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // the `service` field instead. The host might be resolved via external
      // DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
      // in-cluster DNS as that would be a layering violation). `host` may
      // also be an IP address.
      //
      // Please note that using `localhost` or `127.0.0.1` as a `host` is
      // risky unless you take great care to run this webhook on all hosts
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // the `service` field instead. The host might be resolved via external
      // DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
      // in-cluster DNS as that would be a layering violation). `host` may
      // also be an IP address.
      //
      // Please note that using `localhost` or `127.0.0.1` as a `host` is
      // risky unless you take great care to run this webhook on all hosts
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  10. cmd/bucket-lifecycle.go

    }
    
    var selectParamsXMLName = "SelectParameters"
    
    // UnmarshalXML - decodes XML data.
    func (sp *SelectParameters) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    	// Essentially the same as S3Select barring the xml name.
    	if start.Name.Local == selectParamsXMLName {
    		start.Name = xml.Name{Space: "", Local: "SelectRequest"}
    	}
    	return sp.S3Select.UnmarshalXML(d, start)
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 17 05:09:58 GMT 2024
    - 33.1K bytes
    - Viewed (0)
Back to top