Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for Enforce (0.18 sec)

  1. cmd/site-replication.go

    					Status:    madmin.ReplicateRemoveStatusPartial,
    				}, errSRPeerResp(fmt.Errorf("unable to update peer %s: %w", c.state.Peers[dID].Name, err))
    			}
    			errdID = dID
    		}
    	}
    
    	// force local config to be cleared even if peers failed since the remote targets are deleted
    	// by now from the replication config and user intended to forcibly clear all site replication
    	if rreq.RemoveAll {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		Change to dir before running the command.
    //		Any files named on the command line are interpreted after
    //		changing directories.
    //		If used, this flag must be the first one in the command line.
    //	-a
    //		force rebuilding of packages that are already up-to-date.
    //	-n
    //		print the commands but do not run them.
    //	-p n
    //		the number of programs, such as build commands or
    //		test binaries, that can be run in parallel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		return url.Parse(ts.URL)
    	}
    	c.Transport.(*Transport).ProxyConnectHeader = Header{
    		"User-Agent": {"foo"},
    		"Other":      {"bar"},
    	}
    
    	res, err := c.Get("https://dummy.tld/") // https to force a CONNECT
    	if err == nil {
    		res.Body.Close()
    		t.Errorf("unexpected success")
    	}
    
    	r := <-reqc
    	if got, want := r.Header.Get("User-Agent"), "foo"; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      /**
       * This test puts a request in front of one that is to be canceled, so that it is canceled before
       * I/O takes place.
       */
      @Test
      fun canceledBeforeIOSignalsOnFailure() {
        // Force requests to be executed serially.
        val dispatcher = Dispatcher(client.dispatcher.executorService)
        dispatcher.maxRequests = 1
        client =
          client.newBuilder()
            .dispatcher(dispatcher)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    		return
    	}
    
    	rcfg, _ := globalBucketObjectLockSys.Get(bucket)
    	if rcfg.LockEnabled && opts.DeletePrefix {
    		apiErr := toAPIError(ctx, errInvalidArgument)
    		apiErr.Description = "force-delete is forbidden on Object Locking enabled buckets"
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    								}
    							}
    						}
    						return nil
    					})
    			},
    			setupOpts: func(src echo.Caller, opts *echo.CallOptions) {
    				// TODO force this globally in echotest?
    				if src, ok := src.(echo.Instance); ok && src.Config().IsProxylessGRPC() {
    					opts.Port.Name = "grpc"
    				}
    			},
    			opts: echo.CallOptions{
    				Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	if limit == 0 {
    		limit = 1 << 63 // unlimited
    	}
    	if *FlagDebugTextSize != 0 {
    		limit = uint64(*FlagDebugTextSize)
    	}
    	if *FlagDebugTramp > 1 {
    		limit = 1 // debug mode, force generating trampolines for everything
    	}
    
    	if ctxt.IsAIX() && ctxt.IsExternal() {
    		// On AIX, normally we won't generate direct calls to external symbols,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    	// Spread the amount we ask over 10 pods.  We can add some jitter later in reportedLevels.
    	perPodRequested := totalRequestedCPUOfAllPods / startPods
    
    	// Force a minimal scaling event by satisfying  (tolerance < 1 - resourcesUsedRatio).
    	target := math.Abs(1/(requestedToUsed*(1-defaultTestingTolerance))) + .01
    	finalCPUPercentTarget := int32(target * 100)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // tf.Min even though it doesn't make sense. The legalization of tf to xla
    // requires that complex types are not allowed in tf.Min, so we have an
    // explicit unit here to make sure that invariant is enforced.
    func.func @testMinComplex(%arg0: tensor<4x8xcomplex<f32>>) -> tensor<4x1xcomplex<f32>> {
      %dimension = "tf.Const"() { value = dense<1> : tensor<1xi64> } : () -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    FieldName     = identifier .
    Element       = Expression | LiteralValue .
    </pre>
    
    <p>
    The LiteralType's underlying type must be a struct, array, slice, or map type
    (the grammar enforces this constraint except when the type is given
    as a TypeName).
    The types of the elements and keys must be <a href="#Assignability">assignable</a>
    to the respective field, element, and key types of the literal type;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top