Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 909 for syncs (0.04 sec)

  1. docs/bucket/replication/setup_3site_replication.sh

    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for a -> c : ${remote_arn}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

    }
    configurations {
        compile {
            resolutionStrategy.cacheChangingModulesFor(0, "seconds")
        }
    }
    dependencies {
        compile 'group:projectA:1.0'
    }
    
    task retrieve(type: Sync) {
        into 'libs'
        from configurations.compile
    }
    """
    
            when:
            projectA.pom.expectGet()
            projectA.artifact.expectGet()
            projectB.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. schema/schema_test.go

    package schema_test
    
    import (
    	"strings"
    	"sync"
    	"testing"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/schema"
    	"gorm.io/gorm/utils/tests"
    )
    
    func TestParseSchema(t *testing.T) {
    	user, err := schema.Parse(&tests.User{}, &sync.Map{}, schema.NamingStrategy{})
    	if err != nil {
    		t.Fatalf("failed to parse user, got error %v", err)
    	}
    
    	checkUserSchema(t, user)
    }
    
    func TestParseSchemaWithPointerFields(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                }
                tasks.register("sync", Sync) {
                    from files
                    into "output"
                }
            """
    
            when:
            run "sync"
    
            then:
            file("output").assertHasDescendants("file1.txt", "file2.txt")
    
            when:
            run "sync"
    
            then:
            result.assertTaskSkipped(':sync')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. pkg/log/config.go

    			if ent.Level == zapcore.FatalLevel {
    				funcs.Load().(patchTable).exitProcess(1)
    			}
    
    			return err
    		},
    		sync:        baseLogger.Sync,
    		exitProcess: os.Exit,
    		errorSink:   errSink,
    		close: func() error {
    			// best-effort to sync
    			baseLogger.Sync() // nolint: errcheck
    			for _, f := range closeFns {
    				if err := f(); err != nil {
    					return err
    				}
    			}
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/controller/resourcequota/resource_quota_controller_test.go

    	}
    	assertMonitors(t, qc, "pods", "deployments")
    
    	// Simulate the discovery client returning a resource the restmapper can resolve, but will not sync caches
    	fakeDiscoveryClient.setPreferredResources(unsyncableServerResources, nil)
    
    	// Wait until sync discovers the change
    	time.Sleep(1 * time.Second)
    	// deployments removed, secrets added
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    					// diagnostic message. Consider the following example:
    					//
    					//  func _[Mutex interface{ ~sync.Mutex; M() }](m Mutex) {}
    					//
    					// Here the naive error message will be something like "passes lock
    					// by value: Mutex contains sync.Mutex". This is misleading because
    					// the local type parameter doesn't actually contain sync.Mutex,
    					// which lacks the M method.
    					//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

        fresh "org.gradle.integtests.resolve:unique:1.0-SNAPSHOT"
    }
    
    task resolveStaleThenFresh {
        doFirst {
            project.sync {
                from configurations.stale
                into 'stale'
            }
            project.sync {
                from configurations.fresh
                into 'fresh'
            }
        }
    }
    """
    
            when: "snapshot modules are published"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	uid               string
    	configurationName string
    
    	initObjectSelector sync.Once
    	objectSelector     labels.Selector
    	objectSelectorErr  error
    
    	initNamespaceSelector sync.Once
    	namespaceSelector     labels.Selector
    	namespaceSelectorErr  error
    
    	initClient sync.Once
    	client     *rest.RESTClient
    	clientErr  error
    
    	compileMatcher  sync.Once
    	compiledMatcher matchconditions.Matcher
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package generic_test
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"reflect"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/require"
    
    	k8serrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top