Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for makedev (0.23 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc___xnet_recvmsg __xnet_recvmsg "libsocket.so"
    //go:cgo_import_dynamic libc___xnet_sendmsg __xnet_sendmsg "libsocket.so"
    //go:cgo_import_dynamic libc_acct acct "libc.so"
    //go:cgo_import_dynamic libc___makedev __makedev "libc.so"
    //go:cgo_import_dynamic libc___major __major "libc.so"
    //go:cgo_import_dynamic libc___minor __minor "libc.so"
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    //go:cgo_import_dynamic libc_poll poll "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <sys/select.h>
    #include <sys/socket.h>
    #include <sys/sockio.h>
    #include <sys/stat.h>
    #include <sys/stream.h>
    #include <sys/mman.h>
    #include <sys/wait.h>
    #include <sys/ioctl.h>
    #include <sys/mkdev.h>
    #include <net/bpf.h>
    #include <net/if.h>
    #include <net/if_arp.h>
    #include <net/if_types.h>
    #include <net/route.h>
    #include <netinet/icmp6.h>
    #include <netinet/in.h>
    #include <netinet/ip.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    
    	expectedSet := makeSet([]*v1.Pod{medPriorityPodInfo.Pod, unschedulablePodInfo.Pod, highPriorityPodInfo.Pod})
    	gotPods, gotSummary := q.PendingPods()
    	if diff := cmp.Diff(expectedSet, makeSet(gotPods)); diff != "" {
    		t.Errorf("Unexpected list of pending Pods (-want, +got):\n%s", diff)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    			})
    		}
    	}
    }
    
    type vmCase struct {
    	name string
    	from echo.Instance
    	to   echo.Instances
    	host string
    }
    
    func DNSTestCases(t TrafficContext) {
    	makeSE := func(ips ...string) string {
    		return tmpl.MustEvaluate(`
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: dns
    spec:
      hosts:
      - "fake.service.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

      if (num_dims != -1) {
        std::vector<tensorflow::shape_inference::DimensionHandle> dim_vec;
        dim_vec.reserve(num_dims);
        for (int i = 0; i < num_dims; ++i) {
          dim_vec.push_back(ic->MakeDim(dims[i]));
        }
        return ic->MakeShape(dim_vec);
      } else {
        return ic->UnknownShape();
      }
    }
    
    }  // namespace
    
    void TF_GraphSetOutputHandleShapesAndTypes(TF_Graph* graph, TF_Output output,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                LLVM_DEBUG(llvm::dbgs() << "Unexpected number of elements\n");
                return {};
              }
              int64_t val = (*dea.getValues<APInt>().begin()).getSExtValue();
              dims[i] = ic->MakeDim(val);
            }
          }
        }
      }
      return ic->MakeShape(dims);
    }
    
    bool ShapeInference::ForceTypeForPassThroughOperands(Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function escapeData(s){return s.replace(escapeDataRegExp,escapeReplace);}
    function makeSet(arr){var set={};for(var i=0;i<arr.length;i++){set[arr[i]]=true;}
    return set;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top