Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for Seal (0.07 sec)

  1. tests/integration/pilot/common/routing.go

    ---
    ` + httpVirtualServiceTmpl,
    		opts: echo.CallOptions{
    			Count: 1,
    			Port: echo.Port{
    				Protocol: protocol.HTTP,
    			},
    			HTTP: echo.HTTP{
    				// In real world, this may be set by a downstream LB that terminates the TLS
    				Headers: headers.New().With(headers.XForwardedProto, "https").Build(),
    			},
    			Check: check.OK(),
    		},
    		setupOpts: fqdnHostHeader,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		mp.cgoCallers = new(cgoCallers)
    	}
    	mProfStackInit(mp)
    }
    
    // mProfStackInit is used to eagerly initialize stack trace buffers for
    // profiling. Lazy allocation would have to deal with reentrancy issues in
    // malloc and runtime locks for mLockProfile.
    // TODO(mknyszek): Implement lazy allocation if this becomes a problem.
    func mProfStackInit(mp *m) {
    	if debug.profstackdepth == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // CHECK: "tfl.real"(%arg0)
      %0 = "tfl.real"(%arg0): (tensor<? x complex<f64>>) -> tensor<?xf64>
      func.return %0 : tensor<?xf64>
    }
    
    // -----
    
    func.func @testRealWrongShape(%arg0: tensor<3 x complex<f64>>) -> tensor<4xf32> {
      // expected-error @+1 {{requires the same shape for all operands and results}}
      %0 = "tfl.real"(%arg0): (tensor<3 x complex<f64>>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    func (b *Builder) Do(ctx context.Context, root *Action) {
    	ctx, span := trace.StartSpan(ctx, "exec.Builder.Do ("+root.Mode+" "+root.Target+")")
    	defer span.Done()
    
    	if !b.IsCmdList {
    		// If we're doing real work, take time at the end to trim the cache.
    		c := cache.Default()
    		defer func() {
    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      prepare-kube-proxy-manifest-variables "${src_file}"
    
      cp "${src_file}" /etc/kubernetes/manifests
    }
    
    # Replaces the variables in the etcd manifest file with the real values, and then
    # copy the file to the manifest dir
    # $1: value for variable 'suffix'
    # $2: value for variable 'port'
    # $3: value for variable 'server_port'
    # $4: value for variable 'cpulimit'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    		for !tx.isDone() {
    			time.Sleep(pollDuration)
    		}
    	}
    	defer func() { hookTxGrabConn = nil }()
    
    	// This call will grab the connection and cancel the context
    	// after it has done so. Code after must deal with the canceled state.
    	_, err = tx.QueryContext(ctx, "SELECT|people|name|")
    	if err != nil {
    		t.Fatalf("expected error %v but got %v", nil, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    // the source file, but most processing should be over the vendor-resolved
    // import paths. We do this resolution lazily both to avoid file system work
    // and because the eventual real load of the test imports (during 'go test')
    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <description>Specifies that this profile will be activated based on the project's packaging.</description>
            </field>
            <!--
            This could be included once we teach Maven to deal with multiple versions of the model
            <field>
              <name>custom</name>
              <version>4.1.0+</version>
              <description>Describes a custom profile activation trigger, brought in via build
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    	return s, bindingChan, errChan
    }
    
    // This is a workaround because golint complains that errors cannot
    // end with punctuation.  However, the real predicate error message does
    // end with a period.
    func makePredicateError(failReason string) error {
    	s := fmt.Sprintf("0/1 nodes are available: %v.", failReason)
    	return fmt.Errorf(s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    		expectSyncDaemonSets(t, manager, ds, podControl, 5, 4, 0)
    	}
    }
    
    // DaemonSet with node selector should launch pods on nodes matching selector, but also deal with existing pods on nodes.
    func TestSelectorDaemonDealsWithExistingPods(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top