Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 186 for unwrapped (0.38 sec)

  1. fastapi/openapi/models.py

    
    class XML(BaseModelWithConfig):
        name: Optional[str] = None
        namespace: Optional[str] = None
        prefix: Optional[str] = None
        attribute: Optional[bool] = None
        wrapped: Optional[bool] = None
    
    
    class ExternalDocumentation(BaseModelWithConfig):
        description: Optional[str] = None
        url: AnyUrl
    
    
    class Schema(BaseModelWithConfig):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

            wrappedFailure.cause.causes.any { it.message == "failure 2" }
            wrappedFailure.cause.causes.any { it.message == "failure from task action" }
        }
    
        def "a single exception from async work is not wrapped in a multicause exception"() {
            given:
            task.getTaskActions() >> [action1, action2]
            task.hasTaskActions() >> true
            def failure = new RuntimeException("failure 1")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/network.go

    	} else {
    		delete(n.networkGatewaysBySvc, svc.Hostname)
    	}
    
    	return gatewaysChanged
    }
    
    // getGatewayDetails returns gateways without the address populated, only the network and (unmapped) port for a given service.
    func (n *networkManager) getGatewayDetails(svc *model.Service) []model.NetworkGateway {
    	// TODO should we start checking if svc's Ports contain the gateway port?
    
    	// label based gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                is KtArrayAccessExpression ->
                    child in parent.indexExpressions || parent.arrayExpression == child
    
                // Calls use only the callee directly -- arguments are wrapped in a
                // KtValueArgument container
                is KtCallExpression ->
                    parent.calleeExpression == child && doesCallExpressionUseCallee(child)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/go/doc/doc.go

    // before calling its Markdown method.
    func (p *Package) Markdown(text string) []byte {
    	return p.Printer().Markdown(p.Parser().Parse(text))
    }
    
    // Text returns formatted text for the doc comment text,
    // wrapped to 80 Unicode code points and using tabs for
    // code block indentation.
    //
    // To customize details of the formatting, use [Package.Printer]
    // to obtain a [comment.Printer], and configure it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    		b.Splice(result.raw)
    		return nil
    	}
    	_, err := w.Write(result.raw)
    	return err
    }
    
    // GetObject implements runtime.CacheableObject interface.
    // It returns deep-copy of the wrapped object to return ownership of it
    // to the called according to the contract of the interface.
    func (o *cachingObject) GetObject() runtime.Object {
    	o.lock.RLock()
    	defer o.lock.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/errors/errors_test.go

    			err:          aggregate{errors.New("closed today"), aggregate{aggregate{someError{}}}},
    			matchAgainst: someError{},
    			expectMatch:  true,
    		},
    		{
    			name:         "match via wrapped aggregate",
    			err:          fmt.Errorf("wrap: %w", aggregate{errors.New("err"), someError{}}),
    			matchAgainst: someError{},
    			expectMatch:  true,
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 13:16:21 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device.cc

      }
      result.emplace(std::move(result_content));
      return result;
    }
    
    // Used as an argument to TFE_NewCustomDeviceTensorHandle, indicating how
    // ParallelTensors wrapped in TFE_TensorHandles should be cleaned up once their
    // reference counts drop to zero.
    void ParallelTensorDeallocator(void* data) {
      delete reinterpret_cast<ParallelTensor*>(data);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  9. pkg/volume/util/util.go

    	klog.V(3).Infof("Tearing down volume %v for pod %v at %v", volName, podUID, dir)
    
    	// Wrap EmptyDir, let it do the teardown.
    	wrapped, err := host.NewWrapperUnmounter(volName, volSpec, podUID)
    	if err != nil {
    		return err
    	}
    	return wrapped.TearDownAt(dir)
    }
    
    // MountOptionFromSpec extracts and joins mount options from volume spec with supplied options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. src/net/http/transfer.go

    		if closed || t.BodyCloser == nil {
    			return
    		}
    		if closeErr := t.BodyCloser.Close(); closeErr != nil && err == nil {
    			err = closeErr
    		}
    	}()
    
    	// Write body. We "unwrap" the body first if it was wrapped in a
    	// nopCloser or readTrackingBody. This is to ensure that we can take advantage of
    	// OS-level optimizations in the event that the body is an
    	// *os.File.
    	if t.Body != nil {
    		var body = t.unwrapBody()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top