Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 172 for ants (0.04 sec)

  1. docs/pt/docs/features.md

    ### Suporte de editores
    
    Todo o _framework_ foi projetado para ser fácil e intuitivo de usar, todas as decisões foram testadas em vários editores antes do início do desenvolvimento, para garantir a melhor experiência de desenvolvimento.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/net/http/transport_internal_test.go

    		panic(err)
    	}
    	return req
    }
    
    func dummyRequestWithBodyNoGetBody(method string) *Request {
    	req := dummyRequestWithBody(method)
    	req.GetBody = nil
    	return req
    }
    
    // issue22091Error acts like a golang.org/x/net/http2.ErrNoCachedConn.
    type issue22091Error struct{}
    
    func (issue22091Error) IsHTTP2NoCachedConnError() {}
    func (issue22091Error) Error() string             { return "issue22091Error" }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. build/dependencies.yaml

        - path: test/integration/scheduler_perf/config/templates/pod-with-pod-anti-affinity.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/integration/scheduler_perf/config/templates/pod-with-preferred-pod-affinity.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/integration/scheduler_perf/config/templates/pod-with-preferred-pod-anti-affinity.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. docs/es/docs/features.md

    ### Soporte del editor
    
    El framework fue diseñado en su totalidad para ser fácil e intuitivo de usar. Todas las decisiones fueron probadas en múltiples editores antes de comenzar el desarrollo para asegurar la mejor experiencia de desarrollo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    		controllers.WithMaxAttempts(5))
    
    	c.services = kclient.NewFiltered[*v1.Service](opts.Client, kubetypes.Filter{ObjectFilter: opts.Client.ObjectFilter()})
    
    	// Only handle add. The controller only acts on parts of the service
    	// that are immutable (e.g. name). When we create ServiceExport, we bind its
    	// lifecycle to the Service so that when the Service is deleted,
    	// k8s automatically deletes the ServiceExport.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

                    def resolvedArtifacts = configurations.runtimeClasspath.incoming.artifacts.resolvedArtifacts
                    resArtifacts.set(
                        resolvedArtifacts.map { arts ->
                            arts.collect { art ->
                                objects.newInstance(ResolvedArtifactBean).tap { bean ->
                                    bean.file = art.file
                                    bean.id = art.id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/tidy.go

    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    version. By default, tidy acts as if the -compat flag were set to the
    version prior to the one indicated by the 'go' directive in the go.mod
    file.
    
    The -x flag causes tidy to print the commands download executes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // regarding contains the object this Event is about. In most cases it's an Object reporting controller
      // implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1beta1/generated.proto

      // regarding contains the object this Event is about. In most cases it's an Object reporting controller
      // implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/body-multiple-params.md

            "tax": 3.2
        },
        "user": {
            "username": "dave",
            "full_name": "Dave Grohl"
        }
    }
    ```
    
    !!! note "Nota"
        Repare que mesmo que o `item` esteja declarado da mesma maneira que antes, agora é esperado que ele esteja dentro do corpo com uma chave `item`.
    
    
    O **FastAPI** fará a conversão automática a partir da requisição, assim esse parâmetro `item` receberá seu respectivo conteúdo e o mesmo ocorrerá com `user`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top